Don't reference long in types.pyi (#1112)

(It's a type alias for int anyway, and it will cause a problem in the
initial import cycle once #886 is merged.)
This commit is contained in:
Guido van Rossum
2017-03-29 10:43:44 -07:00
committed by Jelle Zijlstra
parent 6c3e175c8d
commit 72d275bbf5

View File

@@ -13,7 +13,7 @@ TypeType = type
ObjectType = object
IntType = int
LongType = long
LongType = int # Really long, but can't reference that due to a mypy import cycle
FloatType = float
BooleanType = bool
ComplexType = complex