mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 06:44:46 +08:00
28 lines
326 B
Python
28 lines
326 B
Python
# -----------------
|
|
# not found decorators
|
|
# -----------------
|
|
@not_found_decorator
|
|
def just_a_func():
|
|
return 1
|
|
|
|
#? []
|
|
just_a_func()
|
|
|
|
#? []
|
|
just_a_func.
|
|
|
|
|
|
class JustAClass:
|
|
@not_found_decorator2
|
|
def a(self):
|
|
return 1
|
|
|
|
#? []
|
|
JustAClass().a.
|
|
#? []
|
|
JustAClass().a()
|
|
#? []
|
|
JustAClass.a.
|
|
#? []
|
|
JustAClass().a()
|