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