summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-12 01:27:19 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-12 01:27:19 +0100
commit61093c0cedc164be3fed2e355ed3cca522ffbbe5 (patch)
treeae9b5d9188b45b26b511de38e5a36cf2d1e09fa7 /Misc
parent04842a84c31d82d9c2255e6575344412c58e518e (diff)
parent3714c1ebfd12e99e9bf95b9d9867aca3872bce55 (diff)
downloadcpython-git-61093c0cedc164be3fed2e355ed3cca522ffbbe5.tar.gz
Issue #13193: Fix distutils.filelist.FileList and
packaging.manifest.Manifest under Windows. The "recursive-include" directive now recognizes both legal path separators.
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 56802b533c..05ff988c2e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -365,6 +365,10 @@ Core and Builtins
Library
-------
+- Issue #13193: Fix distutils.filelist.FileList and
+ packaging.manifest.Manifest under Windows. The "recursive-include"
+ directive now recognizes both legal path separators.
+
- Issue #13384: Remove unnecessary __future__ import in Lib/random.py
- Issue #13149: Speed up append-only StringIO objects.