Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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