mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
10 lines
164 B
Python
10 lines
164 B
Python
import builtins as b
|
|
|
|
quotient, rem = b.divmod(42, 3)
|
|
b.divmod
|
|
|
|
class MyClass(object):
|
|
@b.stati<caret>cmethod
|
|
@b.staticmethod
|
|
def method():
|
|
pass |