summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-05-14 18:48:17 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-05-14 18:48:17 (GMT)
commit429b59ec6990dab19d5a0e0a91f55b5f0e850cf6 (patch)
treea703239002a5ed00ceb3d4dcb21d4ad145edc727 /Misc
parent946cfc3e238bbd67ff436af5fd05414bbd2e5a08 (diff)
downloadcpython-429b59ec6990dab19d5a0e0a91f55b5f0e850cf6.zip
cpython-429b59ec6990dab19d5a0e0a91f55b5f0e850cf6.tar.gz
cpython-429b59ec6990dab19d5a0e0a91f55b5f0e850cf6.tar.bz2
Issue #20998: Fixed re.fullmatch() of repeated single character pattern
with ignore case. Original patch by Matthew Barnett.
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 161016a..e2836a1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,9 @@ Core and Builtins
Library
-------
+- Issue #20998: Fixed re.fullmatch() of repeated single character pattern
+ with ignore case. Original patch by Matthew Barnett.
+
- Issue #21075: fileinput.FileInput now reads bytes from standard stream if
binary mode is specified. Patch by Sam Kimbrel.