Files
openide/python/testData/intentions/removeQualifierFromThisName_after.py
Petr 0b75360e40 [python] Improve test coverage of ImportToImportFromIntention
GitOrigin-RevId: 5c98b2124a35b66132b007c2c60236df90b5adff
2024-04-03 21:12:18 +00:00

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