mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 18:25:37 +07:00
9 lines
160 B
Python
9 lines
160 B
Python
from __builtin__ import staticmethod, divmod
|
|
|
|
quotient, rem = divmod(42, 3)
|
|
|
|
// PY-11074
|
|
class MyClass(object):
|
|
@staticmethod
|
|
def method():
|
|
pass |