Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection3K
/
objectNewAttributes.py
blob: 947e404b2d74b25f2cf7a78cf9b4ba6e70f26910 [
file
] [
log
] [
blame
]
class
C
(
object
):
def
__new__
(
cls
):
self
=
object
.
__new__
(
cls
)
self
.
foo
=
1
return
self
x
=
C
()
print
(
x
.
foo
)
print
(
x
.<
warning descr
=
"Unresolved attribute reference 'bar' for class 'C'"
>
bar
</
warning
>)