Files
openide/python/testData/inspections/PyCallingNonCallableInspection/classAssignments.py
2011-08-15 19:47:46 +04:00

12 lines
194 B
Python

# PY-4061
def test_class_assignments():
class C():
def __init__(self):
pass
d = C
a = d() #pass
l = list
a = l([]) #pass
d = dict
b = d({}) #pass