diff options
Diffstat (limited to 'Lib/types.py')
-rw-r--r-- | Lib/types.py | 1 |
1 files changed, 1 insertions, 0 deletions
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: |