Update to Python 2.3, getting rid of backward compatiblity crud.
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 @@
hqre = re.compile(r'[^-a-zA-Z0-9!*+/ ]')
bqre = re.compile(r'[^ !-<>-~\t]')
-try:
- True, False
-except NameError:
- True = 1
- False = 0
-
# Helpers