From: Serhiy Storchaka Date: Tue, 29 Jan 2013 18:15:45 +0000 (+0200) Subject: Issue #12004: Fix an internal error in PyZipFile when writing an invalid X-Git-Tag: v3.4.0a1~1499 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f7209225bbc386aa3dd49e5c2c601cd0906ccb53;p=python Issue #12004: Fix an internal error in PyZipFile when writing an invalid Python file. Patch by Ben Morgan. --- f7209225bbc386aa3dd49e5c2c601cd0906ccb53 diff --cc Misc/NEWS index ef5c6bd940,ce8c088fa6..beee1c39f7 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -236,11 -164,9 +236,14 @@@ Core and Builtin Library ------- + - Issue #12004: Fix an internal error in PyZipFile when writing an invalid + Python file. Patch by Ben Morgan. + +Have py_compile use importlib as much as possible to avoid code duplication. + +- Issue #180022: Have site.addpackage() consider already known paths even when + none are explicitly passed in. Bug report and fix by Kirill. + - Issue #1602133: on Mac OS X a shared library build (``--enable-shared``) now fills the ``os.environ`` variable correctly.