1
0
forked from VimPlug/jedi

typing.Union and typing.Optional

This commit is contained in:
Claude
2015-12-31 01:59:34 +01:00
parent 7b97312509
commit 3852431549
2 changed files with 34 additions and 0 deletions

View File

@@ -154,5 +154,32 @@ def mapping(
##? Value() --- TODO fix support for tuple assignment
value
def union(
p: typing.Union[int],
q: typing.Union[int, int],
r: typing.Union[int, str, "int"],
s: typing.Union[int, typing.Union[str, "typing.Union['float', 'dict']"]],
t: typing.Union[int, None]):
#? int()
p
#? int()
q
#? int() str()
r
#? int() str() float() dict()
s
#? int()
t
def optional(
p: typing.Optional[int]):
"""
Optional does not do anything special. However it should be recognised
as being of that type. Jedi doesn't do anything with the extra into that
it can be None as well
"""
#? int()
p
class ForwardReference:
pass