diff options
author | Barry Warsaw <barry@python.org> | 2004-05-09 03:55:11 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2004-05-09 03:55:11 +0000 |
commit | 24f79762a10bdadcf8383e5a94acf5346810d4d5 (patch) | |
tree | 2cefd9ed86b17e1bd4f3eaeecbfabbeb4f591acb /Lib/email/quopriMIME.py | |
parent | 235c8eba62f1ecfb5beb1be0f692de3a07ef4ab1 (diff) | |
download | cpython-git-24f79762a10bdadcf8383e5a94acf5346810d4d5.tar.gz |
Update to Python 2.3, getting rid of backward compatiblity crud.
Diffstat (limited to 'Lib/email/quopriMIME.py')
-rw-r--r-- | Lib/email/quopriMIME.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Lib/email/quopriMIME.py b/Lib/email/quopriMIME.py index 67369b521f..2802bc2f1c 100644 --- a/Lib/email/quopriMIME.py +++ b/Lib/email/quopriMIME.py @@ -1,4 +1,4 @@ -# Copyright (C) 2001,2002 Python Software Foundation +# Copyright (C) 2001-2004 Python Software Foundation # Author: che@debian.org (Ben Gertzfield) """Quoted-printable content transfer encoding per RFCs 2045-2047. @@ -38,12 +38,6 @@ MISC_LEN = 7 hqre = re.compile(r'[^-a-zA-Z0-9!*+/ ]') bqre = re.compile(r'[^ !-<>-~\t]') -try: - True, False -except NameError: - True = 1 - False = 0 - # Helpers |