Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
findUsages
/
WrappedMethod.py
blob: b2fcc30bda0118e739eced5166bf3fea99b6afec [
file
] [
log
] [
blame
]
class
TestClass
:
def
__init__
(
self
):
MyClass
.
testMethod
(
"Hello World"
)
class
MyClass
:
#@staticmethod
def
te
<
caret
>
stMethod
(
text
):
print
(
text
)
testMethod
=
staticmethod
(
testMethod
)
if
__name__
==
'__main__'
:
TestClass
()