add BooleanType

This commit is contained in:
Skip Montanaro 2002-05-21 23:17:12 +00:00
parent 5e355b244f
commit 012ed5da5e

View File

@ -16,6 +16,7 @@ ObjectType = object
IntType = int
LongType = long
FloatType = float
BooleanType = bool
try:
ComplexType = complex
except NameError: