Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
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
()