Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyCallingNonCallableInspection
/
getattrCallable.py
blob: 39dd0a70afab37ef653813ee43ed455a09eff71e [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
class
value
():
2
pass
3
4
class
MyClass
(
object
):
5
def
bar
(
self
):
6
foo
=
getattr
(
self
,
'foo'
)
7
foo
()