summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2002-05-21 23:17:12 (GMT)
committerSkip Montanaro <skip@pobox.com>2002-05-21 23:17:12 (GMT)
commit012ed5da5edcb0f84a581e42efccef44700943c6 (patch)
treebbcb53c41e812603fb5077051b7591f326a8dfcf /Lib
parent5e355b244ff5b76e736a949d6ee5ec4f01f0b9a0 (diff)
downloadcpython-012ed5da5edcb0f84a581e42efccef44700943c6.zip
cpython-012ed5da5edcb0f84a581e42efccef44700943c6.tar.gz
cpython-012ed5da5edcb0f84a581e42efccef44700943c6.tar.bz2
add BooleanType
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: