summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-02-15 17:03:59 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-02-15 17:03:59 (GMT)
commit57fffd6f99d55ccd623b381622b989410a695b99 (patch)
treee7496d2dd553e3843195302918b6cb874eb25704 /Misc
parent0aa74e10bb7697db00514d62269ff9cae7bd7af9 (diff)
downloadcpython-57fffd6f99d55ccd623b381622b989410a695b99.zip
cpython-57fffd6f99d55ccd623b381622b989410a695b99.tar.gz
cpython-57fffd6f99d55ccd623b381622b989410a695b99.tar.bz2
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 47e325d..ca4685c 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.