mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
23 lines
258 B
Python
23 lines
258 B
Python
class X():
|
|
def func(self, foo):
|
|
pass
|
|
|
|
|
|
class Y(X):
|
|
def actual_function(self):
|
|
pass
|
|
|
|
#? []
|
|
def actual_function
|
|
#? ['func']
|
|
def f
|
|
|
|
#? []
|
|
def __class__
|
|
|
|
#? ['__repr__']
|
|
def __repr__
|
|
|
|
#? []
|
|
def mro
|