summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-16 13:13:28 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-16 13:13:28 (GMT)
commit593568bf47600154b760edf21f22090ff60a2a74 (patch)
tree22ec31ee65e7cac5098aae53536198712ff2a348 /Misc
parent3d7e11520e5993b2adf9b809a8342084053988ae (diff)
downloadcpython-593568bf47600154b760edf21f22090ff60a2a74.zip
cpython-593568bf47600154b760edf21f22090ff60a2a74.tar.gz
cpython-593568bf47600154b760edf21f22090ff60a2a74.tar.bz2
Issue #19912: Fixed numerous bugs in ntpath.splitunc().
* splitunc() no more return illegal result for paths with redundant slashes. * splitunc() now correctly processes the 'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Deprecation warnings now emitted for every use of splitunc(). * Added tests for splitunc().
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 c5244d3..b0c1e36 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,8 @@ Core and Builtins
Library
-------
+- Issue #19912: Fixed numerous bugs in ntpath.splitunc().
+
- Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character
(U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).
@@ -147,6 +149,8 @@ IDLE
Tests
-----
+- Issue #19912: Added tests for ntpath.splitunc().
+
- Issue #19828: Fixed test_site when the whole suite is run with -S.
- Issue #19928: Implemented a test for repr() of cell objects.