summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2014-12-01 22:23:55 (GMT)
committerBarry Warsaw <barry@python.org>2014-12-01 22:23:55 (GMT)
commit9e4db75426be7433af7c0d5b569fb3f3c4b5877e (patch)
treedd1466daccf2d5f11d530cfc4f194cd7eea1dce9 /Misc
parenteecd5c4a007b6f5926063a6b9c695cd4c9d2b2ec (diff)
parent2a413853f15755060996ba20ab7cdeedb7caff22 (diff)
downloadcpython-9e4db75426be7433af7c0d5b569fb3f3c4b5877e.zip
cpython-9e4db75426be7433af7c0d5b569fb3f3c4b5877e.tar.gz
cpython-9e4db75426be7433af7c0d5b569fb3f3c4b5877e.tar.bz2
- 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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cc29df7..d820bb6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,10 @@ Core and Builtins
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.