# -*- mode: snippet -*-
# name: __rpow__
# key: _rpow
# group: Special methods
# --
def __rpow__(self, other):
    return $0
