Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
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
()