diff options
author | Sean Reifschneider <jafo@tummy.com> | 2012-03-13 00:22:38 (GMT) |
---|---|---|
committer | Sean Reifschneider <jafo@tummy.com> | 2012-03-13 00:22:38 (GMT) |
commit | 7b3c975aafc40f09bfd0c39e42153c3a0d086fba (patch) | |
tree | 7c9214b99b13b7c65116b5c72135dfa9332beca0 /Misc | |
parent | 45e50de1f5eed5b2ee936e36dd297cd6a43c042d (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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? =================================== |