diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-16 13:13:28 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-16 13:13:28 (GMT) |
commit | 593568bf47600154b760edf21f22090ff60a2a74 (patch) | |
tree | 22ec31ee65e7cac5098aae53536198712ff2a348 /Misc/NEWS | |
parent | 3d7e11520e5993b2adf9b809a8342084053988ae (diff) | |
download | cpython-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/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |