diff options
author | Barry Warsaw <barry@python.org> | 2003-04-02 04:51:33 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2003-04-02 04:51:33 (GMT) |
commit | 7ba256f039ff917bfa3fe6fc0f9a6abd8e922ef3 (patch) | |
tree | 9956d1a7f7bd283997ae63637277ae413c6016a7 /Lib/email/_compat22.py | |
parent | a02b7a8f6dea401d090e5f1dc26812dbdac38981 (diff) | |
download | cpython-7ba256f039ff917bfa3fe6fc0f9a6abd8e922ef3.zip cpython-7ba256f039ff917bfa3fe6fc0f9a6abd8e922ef3.tar.gz cpython-7ba256f039ff917bfa3fe6fc0f9a6abd8e922ef3.tar.bz2 |
Fix a comment
Diffstat (limited to 'Lib/email/_compat22.py')
-rw-r--r-- | Lib/email/_compat22.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/_compat22.py b/Lib/email/_compat22.py index e0f72a8..fc1d32a 100644 --- a/Lib/email/_compat22.py +++ b/Lib/email/_compat22.py @@ -9,7 +9,7 @@ from __future__ import division from cStringIO import StringIO from types import StringTypes -# Python 2.2.x where x < 2 lacks True/False +# Python 2.2.x where x < 1 lacks True/False try: True, False except NameError: |