Files
jedi/test/completion/dynamic.py
2012-08-05 17:24:26 +02:00

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('')