summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/types.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/types.py b/Lib/types.py
index 41accfc..0d51743 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: