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