mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-09 23:34:45 +08:00
15 lines
210 B
Python
15 lines
210 B
Python
"""
|
|
This is used for dynamic object completion.
|
|
Jedi tries to guess the types with a backtracking approach.
|
|
"""
|
|
def func(a):
|
|
#? int() str()
|
|
return a
|
|
|
|
#? int()
|
|
func(1)
|
|
|
|
func
|
|
|
|
int(1) + (int(2))+ func('')
|