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