History log of /external/python/cpython3/Lib/email/base64mime.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
540f0451d282181449ae42b9325764a690bd6162 10-Aug-2016 Martin Panter <vadmium+py@gmail.com> Correct misspellings of ISO-8859
/external/python/cpython3/Lib/email/base64mime.py
f1046ca8173380e2c320c56e1cdc911493371057 27-Jul-2010 Florent Xicluna <florent.xicluna@gmail.com> Issue #4770: Restrict binascii module to accept only bytes (as specified).
And fix the email package to encode to ASCII instead of ``raw-unicode-escape`` before ASCII-to-binary decoding.
/external/python/cpython3/Lib/email/base64mime.py
1c25de69ee63c80e6a6640a941b44f623d271a0e 12-Jul-2009 Amaury Forgeot d'Arc <amauryfa@gmail.com> Merged revisions 73952 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

(Only docstrings were modified, won't backport to 3.1)

........
r73952 | amaury.forgeotdarc | 2009-07-11 16:33:51 +0200 (sam., 11 juil. 2009) | 4 lines

#2622 Import errors in email.message, from a py2app standalone application.

Patch by Mads Kiilerich, Reviewed by Barry Warsaw.
........
/external/python/cpython3/Lib/email/base64mime.py
3ed0deb9af03c3546ebe583c38ccfd0c5e364196 04-Jun-2009 Georg Brandl <georg@python.org> Remove nonexisting stuff from __all__.
/external/python/cpython3/Lib/email/base64mime.py
3308e802522d2ed1fbaac3c935af85fb444cc3c5 29-May-2009 Georg Brandl <georg@python.org> #6139: fix typo of variable name.
/external/python/cpython3/Lib/email/base64mime.py
5209857f8ef14876e03a3d7445bdad9b8de51faf 03-May-2008 Alexandre Vassalotti <alexandre@peadrop.com> Removed implicit convertions of str object to bytes from base64.

This also exposed some bugs in urlib2 and email.base64mime, which I
tried my best to fix. However, someone will probably have to double
check.
/external/python/cpython3/Lib/email/base64mime.py
05e8be17fd15d8e649e026600f5ab20e1154599f 23-Feb-2008 Christian Heimes <christian@cheimes.de> Merged revisions 60990-61002 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
r60990 | eric.smith | 2008-02-23 17:05:26 +0100 (Sat, 23 Feb 2008) | 1 line

Removed duplicate Py_CHARMASK define. It's already defined in Python.h.
........
r60991 | andrew.kuchling | 2008-02-23 17:23:05 +0100 (Sat, 23 Feb 2008) | 4 lines

#1330538: Improve comparison of xmlrpclib.DateTime and datetime instances.
Remove automatic handling of datetime.date and datetime.time.
This breaks backward compatibility, but python-dev discussion was strongly
against this automatic conversion; see the bug for a link.
........
r60994 | andrew.kuchling | 2008-02-23 17:39:43 +0100 (Sat, 23 Feb 2008) | 1 line

#835521: Add index entries for various pickle-protocol methods and attributes
........
r60995 | andrew.kuchling | 2008-02-23 18:10:46 +0100 (Sat, 23 Feb 2008) | 2 lines

#1433694: minidom's .normalize() failed to set .nextSibling for last element.
Fix by Malte Helmert
........
r61000 | christian.heimes | 2008-02-23 18:40:11 +0100 (Sat, 23 Feb 2008) | 1 line

Patch #2167 from calvin: Remove unused imports
........
r61001 | christian.heimes | 2008-02-23 18:42:31 +0100 (Sat, 23 Feb 2008) | 1 line

Patch #1957: syslogmodule: Release GIL when calling syslog(3)
........
r61002 | christian.heimes | 2008-02-23 18:52:07 +0100 (Sat, 23 Feb 2008) | 2 lines

Issue #2051 and patch from Alexander Belopolsky:
Permission for pyc and pyo files are inherited from the py file.
........
/external/python/cpython3/Lib/email/base64mime.py
98297ee7815939b124156e438b22bd652d67b5db 06-Nov-2007 Guido van Rossum <guido@python.org> Merging the py3k-pep3137 branch back into the py3k branch.
No detailed change log; just check out the change log for the py3k-pep3137
branch. The most obvious changes:

- str8 renamed to bytes (PyString at the C level);
- bytes renamed to buffer (PyBytes at the C level);
- PyString and PyUnicode are no longer compatible.

I.e. we now have an immutable bytes type and a mutable bytes type.

The behavior of PyString was modified quite a bit, to make it more
bytes-like. Some changes are still on the to-do list.
/external/python/cpython3/Lib/email/base64mime.py
2cc1f6d95b11f017f04921ea33a5cfc369e32e97 30-Aug-2007 Barry Warsaw <barry@python.org> More email package related repairs. This fixes smtplib's import and use of
email.base64mime, but test_smtplib still has failures for me. They are
timeout errors so think they're more related to my current wacky network setup
than bugs remaining in the code related to the email package.

This also r57693 that got clobbered with the sandbox sync, and fixes a couple
of other minor problems that cropped up. I will kill the sandbox branch next.

The email package now has 11F/11E.
/external/python/cpython3/Lib/email/base64mime.py
9604e66660bfe5066a88e3eb560a5846c620e8de 30-Aug-2007 Guido van Rossum <guido@python.org> Oops. I copied a slightly older version of the email package from the sandbox.
This should restore the email package in the py3k branch to exactly what's in
the sandbox.

This wipes out 1-2 fixes made post-copy, which I'll re-apply shortly.
/external/python/cpython3/Lib/email/base64mime.py
8b3d659692b6d092991dc3b5b4042547f885fa8c 30-Aug-2007 Barry Warsaw <barry@python.org> Fix a more bytes/str confusion.

Use str.encode('raw-unicode-escape') consistently instead of bytes(string).

Remove the convert_eols argument from base64mime.decode(). This matches
previous API changes done to the quoprimime module.
/external/python/cpython3/Lib/email/base64mime.py
8b3febef2f96c35e9aad9db2ef499db040fdefae 30-Aug-2007 Guido van Rossum <guido@python.org> Copying the email package back, despite its failings.
/external/python/cpython3/Lib/email/base64mime.py
6398b7a351d04408fa8ce0204d78559e8d6ac98f 25-Aug-2007 Guido van Rossum <guido@python.org> Remove the email package for now.
Once Barry and the email-sig have a working new version
we'll add it back.
If it doesn't make the 3.0a deadline (release August 31), too bad.
/external/python/cpython3/Lib/email/base64mime.py
b053cd8f40dd19985b16f50661640dcefb69888f 24-Aug-2006 Guido van Rossum <guido@python.org> Killed the <> operator. You must now use !=.

Opportunistically also fixed one or two places where '<> None' should be
'is not None' and where 'type(x) <> y' should be 'not isinstance(x, y)'.
/external/python/cpython3/Lib/email/base64mime.py
49fd7fa4431da299196d74087df4a04f99f9c46f 21-Apr-2006 Thomas Wouters <thomas@python.org> Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
number of tests, all because of the codecs/_multibytecodecs issue described
here (it's not a Py3K issue, just something Py3K discovers):
http://mail.python.org/pipermail/python-dev/2006-April/064051.html

Hye-Shik Chang promised to look for a fix, so no need to fix it here. The
tests that are expected to break are:

test_codecencodings_cn
test_codecencodings_hk
test_codecencodings_jp
test_codecencodings_kr
test_codecencodings_tw
test_codecs
test_multibytecodec

This merge fixes an actual test failure (test_weakref) in this branch,
though, so I believe merging is the right thing to do anyway.
/external/python/cpython3/Lib/email/base64mime.py