summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-02-15 17:06:54 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-02-15 17:06:54 (GMT)
commit2d07b855855c13814c2050f2f062aadf936fa886 (patch)
tree91f77b70250a13fe4b5ae714a225588795bcbb59 /Misc
parent90caf017eecdc3e734df144ec793af4dda21953e (diff)
parent57fffd6f99d55ccd623b381622b989410a695b99 (diff)
downloadcpython-2d07b855855c13814c2050f2f062aadf936fa886.zip
cpython-2d07b855855c13814c2050f2f062aadf936fa886.tar.gz
cpython-2d07b855855c13814c2050f2f062aadf936fa886.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 9051e00..d440151 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 #23096: Pickle representation of floats with protocol 0 now is the same
for both Python and C implementations.