From ca53c12c8b7714108bb130651f3cf1a9c6ec6036 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 12 Mar 2003 02:54:17 +0000 Subject: Python 2.1 doesn't have True and False --- Lib/email/_compat21.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Lib/email/_compat21.py b/Lib/email/_compat21.py index 7cead23..0e0b3d0 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 -- cgit v0.12