1
0
forked from VimPlug/jedi

initial poc pep-0484 type hints

This commit is contained in:
Claude
2015-12-13 15:20:26 +01:00
parent 8d3be10270
commit fadf4f4419
3 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
""" Pep-0484 type hinting """
# -----------------
# sphinx style
# -----------------
def typehints(a, b: str, c: int, d:int = 4):
#?
a
#? str()
b
#? int()
c
#? int()
d