Files
openide/python/testData/resolve/DunderSizeOfInDeclarationWithInheritedClassAttr.py

6 lines
89 B
Python

class A(object):
__sizeof__ = 17
class B(A):
print(__sizeof__)
# <ref>