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