diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2009-03-02 05:21:55 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2009-03-02 05:21:55 (GMT) |
commit | ccc5ae7ae13138eb3acf3a15e92983a49e53dd90 (patch) | |
tree | ec15b883a13aa8ee8cfcfdcf0e633e83ec236422 /Misc | |
parent | 4221c74cb00fa00ce8b4a6015c59a233246bf1e9 (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 ------- |