Removed pre-2.3 workaround for booleans

This commit is contained in:
Daniel Neuhäuser 2010-05-01 19:19:24 +02:00
parent eef0b0821d
commit 6651f67602

View File

@ -56,12 +56,6 @@ try:
except AttributeError:
pass
# Pre-2.3 workaround for booleans
try:
True, False
except NameError:
True, False = 1, 0
# Pre-2.3 workaround for basestring.
try:
basestring