diff options
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 67369b5..2802bc2 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 |