Update Num stub for typed_ast 2.7 (#1430)

Field `n` should be a `Union[int, float, complex]`, not just `Union[int, float]`
This commit is contained in:
Svyatoslav Ilinskiy
2017-06-23 16:43:23 -07:00
committed by Jelle Zijlstra
parent 5306d6f5a7
commit ee5e3affe1

View File

@@ -242,7 +242,7 @@ class Repr(expr):
value = ... # type: expr
class Num(expr):
n = ... # type: Union[int, float]
n = ... # type: Union[int, float, complex]
class Str(expr):
s = ... # type: bytes