summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-12 00:33:59 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-12 00:33:59 (GMT)
commit667383c8d4c9f2169536cafb5f56943c8ef852fe (patch)
treecaaab585a064054502756a3a12e91826a2908dac /Misc
parenta203cedf44c4cfd6dd35871e15086294a4d223b1 (diff)
downloadcpython-667383c8d4c9f2169536cafb5f56943c8ef852fe.zip
cpython-667383c8d4c9f2169536cafb5f56943c8ef852fe.tar.gz
cpython-667383c8d4c9f2169536cafb5f56943c8ef852fe.tar.bz2
Issue #13193: Fix distutils.filelist.FileList under Windows. The
"recursive-include" directive now recognizes both legal path separators.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9517677..259d08a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -76,6 +76,9 @@ Core and Builtins
Library
-------
+- Issue #13193: Fix distutils.filelist.FileList under Windows. The
+ "recursive-include" directive now recognizes both legal path separators.
+
- Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
when called with a timeout. Patch by Arnaud Ysmal.