summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-05-14 18:51:37 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-05-14 18:51:37 (GMT)
commit2e03a0a8a7c5e4228235977c2894d0edb129e420 (patch)
treeca3fd1a7986eb788f3ccdd4d2a9e44de56bd08e4 /Misc
parentb9183bb4fdcc26a1273e39ea6c32052152898802 (diff)
parent429b59ec6990dab19d5a0e0a91f55b5f0e850cf6 (diff)
downloadcpython-2e03a0a8a7c5e4228235977c2894d0edb129e420.zip
cpython-2e03a0a8a7c5e4228235977c2894d0edb129e420.tar.gz
cpython-2e03a0a8a7c5e4228235977c2894d0edb129e420.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 e815e0e..2412c48 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,6 +84,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.