From: Skip Montanaro Date: Tue, 21 May 2002 23:17:12 +0000 (+0000) Subject: add BooleanType X-Git-Tag: v2.3c1~5625 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=012ed5da5edcb0f84a581e42efccef44700943c6;p=python add BooleanType --- diff --git a/Lib/types.py b/Lib/types.py index 41accfc94d..0d5174314c 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: