From: Antoine Pitrou Date: Tue, 15 Mar 2011 20:08:50 +0000 (+0100) Subject: Merge fix for issue #11501 X-Git-Tag: v3.3.0a1~2903^2~2^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0e63f594928ac8b4551c0f46284744a246b179fd;p=thirdparty%2FPython%2Fcpython.git Merge fix for issue #11501 --- 0e63f594928ac8b4551c0f46284744a246b179fd diff --cc Misc/NEWS index 018c62d8c8b2,6501b15e9bc6..ca41e5391b8b --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -68,20 -34,15 +68,24 @@@ Core and Builtin Library ------- + - Issue #11501: disutils.archive_utils.make_zipfile no longer fails if zlib is + not installed. Instead, the zipfile.ZIP_STORED compression is used to create + the ZipFile. Patch by Natalia B. Bidart. + +- Issue #11289: `smtp.SMTP` class becomes a context manager so it can be used + in a `with` statement. Contributed by Giampaolo Rodola. + - Issue #11554: Fixed support for Japanese codecs; previously the body output encoding was not done if euc-jp or shift-jis was specified as the charset. +- Issue #11509: Significantly increase test coverage of fileinput. + Patch by Denver Coneybeare at PyCon 2011 Sprints. + +- Issue #11407: `TestCase.run` returns the result object used or created. + Contributed by Janathan Hartley. + - - Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified - IP addresses in the proxy exception list. + - Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified - IP addresses in the proxy exception list. ++ IP addresses in the proxy exception list. - Issue #11491: dbm.error is no longer raised when dbm.open is called with the "n" as the flag argument and the file exists. The behavior matches