]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
- Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is
authorBarry Warsaw <barry@python.org>
Mon, 1 Dec 2014 22:23:55 +0000 (17:23 -0500)
committerBarry Warsaw <barry@python.org>
Mon, 1 Dec 2014 22:23:55 +0000 (17:23 -0500)
  asked to compile a source file containing multiple dots in the source file
  name.

1  2 
Misc/NEWS

diff --cc Misc/NEWS
index cc29df73cfb62d93f4d711ecf244a5277678c173,49df682470b320f2f2894be8c07d901a38b41101..d820bb66ed642f6e989efd4ed8a807c895ec5810
+++ 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.