summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-10-01 02:04:28 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-10-01 02:04:28 (GMT)
commitbc4ece5775acfd56e09ee074a68f1fd379a1d238 (patch)
tree30228d0373f30b4642249773ace9b7eb27bfc946 /Misc
parentbc4a834bd5110c4171c03c255c61864a7c3d97fe (diff)
downloadcpython-bc4ece5775acfd56e09ee074a68f1fd379a1d238.zip
cpython-bc4ece5775acfd56e09ee074a68f1fd379a1d238.tar.gz
cpython-bc4ece5775acfd56e09ee074a68f1fd379a1d238.tar.bz2
allow longs as indexes to group() (closes #22530)
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 07e8855..2681b9e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,9 @@ Core and Builtins
Library
-------
+- Issue #22530: Allow the ``group()`` method of regular expression match objects
+ to take a ``long`` as an index.
+
- Issue #22517: When a io.BufferedRWPair object is deallocated, clear its
weakrefs.