mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
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:
committed by
Jelle Zijlstra
parent
6c3e175c8d
commit
72d275bbf5
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user