From 012ed5da5edcb0f84a581e42efccef44700943c6 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Tue, 21 May 2002 23:17:12 +0000 Subject: [PATCH] add BooleanType --- Lib/types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/types.py b/Lib/types.py index 41accfc94df..0d5174314cb 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -16,6 +16,7 @@ ObjectType = object IntType = int LongType = long FloatType = float +BooleanType = bool try: ComplexType = complex except NameError: