summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2014-12-01 22:10:10 (GMT)
committerBarry Warsaw <barry@python.org>2014-12-01 22:10:10 (GMT)
commit2a413853f15755060996ba20ab7cdeedb7caff22 (patch)
tree078df44e04e76f6c7861f813df2e9adc18ebea78 /Misc
parentb491e0521fd6e1a2e6f3e6354a2a296c7c8a2915 (diff)
downloadcpython-2a413853f15755060996ba20ab7cdeedb7caff22.zip
cpython-2a413853f15755060996ba20ab7cdeedb7caff22.tar.gz
cpython-2a413853f15755060996ba20ab7cdeedb7caff22.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 9cac209..49df682 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 #21032. Fixed socket leak if HTTPConnection.getresponse() fails.
Original patch by Martin Panter.