From: Barry Warsaw Date: Wed, 12 Mar 2003 02:54:17 +0000 (+0000) Subject: Python 2.1 doesn't have True and False X-Git-Tag: v2.3c1~1473 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ca53c12c8b7714108bb130651f3cf1a9c6ec6036;p=thirdparty%2FPython%2Fcpython.git Python 2.1 doesn't have True and False --- diff --git a/Lib/email/_compat21.py b/Lib/email/_compat21.py index 7cead23b937a..0e0b3d07652b 100644 --- a/Lib/email/_compat21.py +++ b/Lib/email/_compat21.py @@ -7,6 +7,9 @@ from cStringIO import StringIO from types import StringType, UnicodeType +False = 0 +True = 1 + # This function will become a method of the Message class