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

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