Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyCallingNonCallableInspection
/
classAssignments.py
blob: eba7d5f13aaa6e5a6cbf320b5fcf26df5fd19954 [
file
] [
log
] [
blame
]
# 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