- 10 Agu, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 21 Eyl, 2012 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-
- 27 Tem, 2010 1 kayıt (commit)
-
-
Florent Xicluna yazdı
And fix the email package to encode to ASCII instead of ``raw-unicode-escape`` before ASCII-to-binary decoding.
-
- 12 Tem, 2009 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
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. ........
-
- 11 Tem, 2009 2 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ 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. ........
-
Amaury Forgeot d'Arc yazdı
Patch by Mads Kiilerich, Reviewed by Barry Warsaw.
-
- 04 Haz, 2009 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 29 May, 2009 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 03 Agu, 2008 1 kayıt (commit)
-
-
Brett Cannon yazdı
package, when run under -3, about using <>.
-
- 03 May, 2008 1 kayıt (commit)
-
-
Alexandre Vassalotti yazdı
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.
-
- 23 Şub, 2008 2 kayıt (commit)
-
-
Christian Heimes yazdı
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. ........
-
Christian Heimes yazdı
-
- 06 Kas, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
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.
-
- 30 Agu, 2007 4 kayıt (commit)
-
-
Barry Warsaw yazdı
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.
-
Guido van Rossum yazdı
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.
-
Barry Warsaw yazdı
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.
-
Guido van Rossum yazdı
-
- 25 Agu, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
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.
-
- 24 Agu, 2006 1 kayıt (commit)
-
-
Guido van Rossum yazdı
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)'.
-
- 21 Nis, 2006 1 kayıt (commit)
-
-
Thomas Wouters yazdı
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.
-
- 18 Mar, 2006 1 kayıt (commit)
-
-
Barry Warsaw yazdı
and NEWS updates.
-
- 03 Eki, 2004 1 kayıt (commit)
-
-
Barry Warsaw yazdı
Briefly (from the NEWS file): - Updates for the email package: + All deprecated APIs that in email 2.x issued warnings have been removed: _encoder argument to the MIMEText constructor, Message.add_payload(), Utils.dump_address_pair(), Utils.decode(), Utils.encode() + New deprecations: Generator.__call__(), Message.get_type(), Message.get_main_type(), Message.get_subtype(), the 'strict' argument to the Parser constructor. These will be removed in email 3.1. + Support for Python earlier than 2.3 has been removed (see PEP 291). + All defect classes have been renamed to end in 'Defect'. + Some FeedParser fixes; also a MultipartInvariantViolationDefect will be added to messages that claim to be multipart but really aren't. + Updates to documentation.
-
- 09 May, 2004 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 06 Mar, 2003 1 kayıt (commit)
-
-
Barry Warsaw yazdı
Remove a senseless comment.
-
- 28 Eyl, 2002 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 02 Haz, 2002 1 kayıt (commit)
-
-
Barry Warsaw yazdı
compatibility module.
-
- 29 May, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 23 May, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 10 Nis, 2002 1 kayıt (commit)
-
-
Barry Warsaw yazdı
non-us-ascii character sets in headers and bodies. Some API changes (with DeprecationWarnings for the old APIs). Better RFC-compliant implementations of base64 and quoted-printable. Updated test cases. Documentation updates to follow (after I finish writing them ;).
-