Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection
/
getattrAttribute.py
blob: 20d59d923cf7589871f6a3b4ee4d3f9ec4c446f8 [
file
] [
log
] [
blame
]
class
C
(
object
):
def
f
(
self
,
name
):
return
name
__getattr__
=
f
c
=
C
()
print
(
c
.
foo
)
#pass