mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 09:12:22 +07:00
11 lines
187 B
Python
11 lines
187 B
Python
import builtins as b
|
|
from builtins import staticmethod
|
|
|
|
quotient, rem = b.divmod(42, 3)
|
|
b.divmod
|
|
|
|
class MyClass(object):
|
|
@staticmethod
|
|
@staticmethod
|
|
def method():
|
|
pass |