summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-02-15 18:03:59 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2015-02-15 18:03:59 +0100
commit60988dab7a1556417807673397e1a39e4ad075e5 (patch)
treef860322d7c34558d92505fee1196b5b15e2edb53 /Misc
parentda64fca7799b296145ef2fd829b5969d25e8ff66 (diff)
downloadcpython-60988dab7a1556417807673397e1a39e4ad075e5.tar.gz
Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib.
Detected and fixed by Serhiy.
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 47e325da4b..ca4685c9f6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #23146: Fix mishandling of absolute Windows paths with forward
+ slashes in pathlib.
+
- Issue #23421: Fixed compression in tarfile CLI. Patch by wdv4758h.
- Issue #23361: Fix possible overflow in Windows subprocess creation code.