summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-03-02 05:21:55 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-03-02 05:21:55 (GMT)
commitccc5ae7ae13138eb3acf3a15e92983a49e53dd90 (patch)
treeec15b883a13aa8ee8cfcfdcf0e633e83ec236422 /Misc/NEWS
parent4221c74cb00fa00ce8b4a6015c59a233246bf1e9 (diff)
downloadcpython-ccc5ae7ae13138eb3acf3a15e92983a49e53dd90.zip
cpython-ccc5ae7ae13138eb3acf3a15e92983a49e53dd90.tar.gz
cpython-ccc5ae7ae13138eb3acf3a15e92983a49e53dd90.tar.bz2
Merged revisions 70090 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r70090 | gregory.p.smith | 2009-03-01 21:13:57 -0800 (Sun, 01 Mar 2009) | 3 lines Adds an optional flags argument to re.split, re.sub and re.subn to be consistent with the other re module functions. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7f5a99b..0272e79 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -170,6 +170,8 @@ Core and Builtins
- Issue #4748: Lambda generators no longer return a value.
+- The re.sub(), re.subn() and re.split() functions now accept a flags parameter.
+
Library
-------