From: Barry Warsaw Date: Mon, 1 Dec 2014 22:23:55 +0000 (-0500) Subject: - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is X-Git-Tag: v3.4.3rc1~279 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e4db75426be7433af7c0d5b569fb3f3c4b5877e;p=thirdparty%2FPython%2Fcpython.git - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is asked to compile a source file containing multiple dots in the source file name. --- 9e4db75426be7433af7c0d5b569fb3f3c4b5877e diff --cc Misc/NEWS index cc29df73cfb6,49df682470b3..d820bb66ed64 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -36,8 -36,10 +36,12 @@@ Core and Builtin Library ------- + - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is + asked to compile a source file containing multiple dots in the source file + name. + +- Issue #21971: Update turtledemo doc and add module to the index. + - Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails. Original patch by Martin Panter.