Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection
/
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
>)