[Python-checkins] python/dist/src/Lib/email _compat21.py,1.6,1.7
bwarsaw@users.sourceforge.net
bwarsaw@users.sourceforge.net
2003年3月11日 18:54:20 -0800
Update of /cvsroot/python/python/dist/src/Lib/email
In directory sc8-pr-cvs1:/tmp/cvs-serv9438
Modified Files:
_compat21.py
Log Message:
Python 2.1 doesn't have True and False
Index: _compat21.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/_compat21.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** _compat21.py 11 Mar 2003 04:41:18 -0000 1.6
--- _compat21.py 12 Mar 2003 02:54:17 -0000 1.7
***************
*** 8,11 ****
--- 8,14 ----
from types import StringType, UnicodeType
+ False = 0
+ True = 1
+