From 72d275bbf54f965b7007809d08dac95ae37ffa1f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 29 Mar 2017 10:43:44 -0700 Subject: [PATCH] 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.) --- stdlib/2/types.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/2/types.pyi b/stdlib/2/types.pyi index 8baa490d0..54e8b7899 100644 --- a/stdlib/2/types.pyi +++ b/stdlib/2/types.pyi @@ -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