diff options
author | Skip Montanaro <skip@pobox.com> | 2002-05-21 23:17:12 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2002-05-21 23:17:12 (GMT) |
commit | 012ed5da5edcb0f84a581e42efccef44700943c6 (patch) | |
tree | bbcb53c41e812603fb5077051b7591f326a8dfcf /Lib | |
parent | 5e355b244ff5b76e736a949d6ee5ec4f01f0b9a0 (diff) | |
download | cpython-012ed5da5edcb0f84a581e42efccef44700943c6.zip cpython-012ed5da5edcb0f84a581e42efccef44700943c6.tar.gz cpython-012ed5da5edcb0f84a581e42efccef44700943c6.tar.bz2 |
add BooleanType
Diffstat (limited to 'Lib')
-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 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: |