Remove Barry's love of deprecated syntax to silence warnings in the email
package, when run under -3, about using <>.
diff --git a/Lib/email/base64mime.py b/Lib/email/base64mime.py
index 8e76e43..05f960c 100644
--- a/Lib/email/base64mime.py
+++ b/Lib/email/base64mime.py
@@ -145,7 +145,7 @@
# BAW: should encode() inherit b2a_base64()'s dubious behavior in
# adding a newline to the encoded string?
enc = b2a_base64(s[i:i + max_unencoded])
- if enc.endswith(NL) and eol <> NL:
+ if enc.endswith(NL) and eol != NL:
enc = enc[:-1] + eol
encvec.append(enc)
return EMPTYSTRING.join(encvec)