Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyCallingNonCallableInspection
/
staticMeth.py
blob: d9ee2699577b114d4b246636a96cb51d850cfb25 [
file
] [
log
] [
blame
]
class
SM
(
object
):
def
my_method
():
pass
my_method
=
staticmethod
(
my_method
)
def
q
(
self
):
self
.
my_method
()