1
0
forked from VimPlug/jedi
Files
jedi-fork/test/completion/pep0484.py
2015-12-13 21:13:20 +01:00

17 lines
204 B
Python

""" Pep-0484 type hinting """
# -----------------
# simple classes
# -----------------
def typehints(a, b: str, c: int, d: int=4):
#?
a
#? str()
b
#? int()
c
#? int()
d