summaryrefslogtreecommitdiff
path: root/python/testData/intentions/afterImportToImportFrom.py
blob: 45b576a58c94fc41ce5ebab69b876e7d240122a5 (plain)
1
2
3
4
5
6
7
8
9
from __builtin__ import staticmethod, divmod

quotient, rem = divmod(42, 3)

// PY-11074
class MyClass(object):
    @staticmethod
    def method():
        pass