8 lines
125 B
Plaintext
8 lines
125 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: __ipow__
|
|
# key: _ipow
|
|
# group: Special methods
|
|
# --
|
|
def __ipow__(self, other):
|
|
return $0
|