Commit ca53c12c authored by Barry Warsaw's avatar Barry Warsaw

Python 2.1 doesn't have True and False

parent 82f1d2ce
...@@ -7,6 +7,9 @@ ...@@ -7,6 +7,9 @@
from cStringIO import StringIO from cStringIO import StringIO
from types import StringType, UnicodeType from types import StringType, UnicodeType
False = 0
True = 1
# This function will become a method of the Message class # This function will become a method of the Message class
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment