summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSean Reifschneider <jafo@tummy.com>2012-03-13 00:22:38 (GMT)
committerSean Reifschneider <jafo@tummy.com>2012-03-13 00:22:38 (GMT)
commit7b3c975aafc40f09bfd0c39e42153c3a0d086fba (patch)
tree7c9214b99b13b7c65116b5c72135dfa9332beca0 /Misc
parent45e50de1f5eed5b2ee936e36dd297cd6a43c042d (diff)
downloadcpython-7b3c975aafc40f09bfd0c39e42153c3a0d086fba.zip
cpython-7b3c975aafc40f09bfd0c39e42153c3a0d086fba.tar.gz
cpython-7b3c975aafc40f09bfd0c39e42153c3a0d086fba.tar.bz2
closes #14259 re.finditer() now takes keyword arguments: pos, endpos.
Contrary to the documentation, finditer() did not take pos and endpos keyword arguments.
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 3fe824f..7bbe890 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,9 @@ Extension Modules
- Issue #14212: The re module didn't retain a reference to buffers it was
scanning, resulting in segfaults.
+- Issue #14259: The finditer() method of re objects did not take any
+ keyword arguments, contrary to the documentation.
+
What's New in Python 3.3.0 Alpha 1?
===================================