summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-11-10 10:37:16 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-11-10 10:37:16 (GMT)
commit0c938f6d248e7dbf50a1f00b0c6bca3845859fc0 (patch)
treea8ff55cea441decd74a0c514d0c1152789eed682 /Misc
parentd915b0847dd5e43b33cf0683bfc473e904572a56 (diff)
downloadcpython-0c938f6d248e7dbf50a1f00b0c6bca3845859fc0.zip
cpython-0c938f6d248e7dbf50a1f00b0c6bca3845859fc0.tar.gz
cpython-0c938f6d248e7dbf50a1f00b0c6bca3845859fc0.tar.bz2
Issue #12728: Different Unicode characters having the same uppercase but
different lowercase are now matched in case-insensitive regular expressions.
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 1a4ad56..7331e99 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@ Core and Builtins
Library
-------
+- Issue #12728: Different Unicode characters having the same uppercase but
+ different lowercase are now matched in case-insensitive regular expressions.
+
- Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endian
platforms.