1
0
forked from VimPlug/jedi
Files
jedi-fork/test/completion/pep0484_aheadoftime.py
2018-01-30 23:09:42 +01:00

20 lines
286 B
Python

""" Pep-0484 type hinting with ahead of time annotations """
# python >= 3.6
somelist = [1, 2, 3, "A", "A"]
element : int
for element in somelist:
#? int()
element
test_string: str = NOT_DEFINED
#? str()
test_string
char: str
for char in NOT_DEFINED:
#? str()
char