Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyCallingNonCallableInspection
/
getattrCallable.py
blob: 39dd0a70afab37ef653813ee43ed455a09eff71e [
file
] [
log
] [
blame
]
class
value
():
pass
class
MyClass
(
object
):
def
bar
(
self
):
foo
=
getattr
(
self
,
'foo'
)
foo
()