From: Larry Hastings Date: Sun, 6 Sep 2015 03:53:04 +0000 (-0700) Subject: Merged in ncoghlan/cpython350 (pull request #17) X-Git-Tag: v3.5.0rc3~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=055a9e0bc8eb28fd64158ade11019b712116aeae;p=thirdparty%2FPython%2Fcpython.git Merged in ncoghlan/cpython350 (pull request #17) --- 055a9e0bc8eb28fd64158ade11019b712116aeae diff --cc Misc/NEWS index 11d7de4225ae,7ea238753104..ba24851f11e6 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -17,8 -15,11 +17,13 @@@ Core and Builtin Library ------- + - Issue #24748: To resolve a compatibility problem found with py2exe and + pywin32, imp.load_dynamic() once again ignores previously loaded modules + to support Python modules replacing themselves with extension modules. + Patch by Petr Viktorin. + +- Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch. + - Issue #24635: Fixed a bug in typing.py where isinstance([], typing.Iterable) would return True once, then False on subsequent calls.