Granted Noam Raphael's request for minor improvements to the re module and
its documentation.
* Documented that the compiled re methods are supposed to be more full
featured than their simpilified function counterparts.
* Documented the existing start and stop position arguments for the
findall() and finditer() methods of compiled regular expression objects.
* Added an optional flags argument to the re.findall() and re.finditer()
functions. This aligns their API with that for re.search() and
re.match().
diff --git a/Misc/NEWS b/Misc/NEWS
index d3f4fe4..edf5a0c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,11 @@
Library
-------
+- re's findall() and finditer() functions now take an optional flags argument
+ just like the compile(), search(), and match() functions. Also, documented
+ the previously existing start and stop parameters for the findall() and
+ finditer() methods of regular expression objects.
+
- rfc822 Messages now support iterating over the headers.
- The (undocumented) tarfile.Tarfile.membernames has been removed;