8 lines
137 B
Text
8 lines
137 B
Text
![]() |
# -*- mode: snippet -*-
|
||
|
# name: __rdivmod__
|
||
|
# key: __rdivmod__
|
||
|
# group: Special methods
|
||
|
# --
|
||
|
def __rdivmod__(self, other):
|
||
|
return $0
|