summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-16 12:34:55 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-16 12:34:55 (GMT)
commit3d7e11520e5993b2adf9b809a8342084053988ae (patch)
tree7afaf493934ca1a490aae0379ba55c78c0cf4ca8 /Misc
parent8a1d1e647eb133cb1687e183dc0aefa7e2f02fdb (diff)
downloadcpython-3d7e11520e5993b2adf9b809a8342084053988ae.zip
cpython-3d7e11520e5993b2adf9b809a8342084053988ae.tar.gz
cpython-3d7e11520e5993b2adf9b809a8342084053988ae.tar.bz2
Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character
(U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).
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 73625f3..c5244d3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Core and Builtins
Library
-------
+- Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character
+ (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).
+
- Issue #19532: python -m compileall with no filename/directory arguments now
respects the -f and -q flags instead of ignoring them.