diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-16 09:46:28 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-16 09:46:28 (GMT) |
commit | 25324971fb3922a9e7f01380b23227416d753757 (patch) | |
tree | ec6a42304dd8243d3d8834908753f559c53709f6 /Misc | |
parent | 355dda8d17c01d39fac47966aa6b6b44bf6e88b0 (diff) | |
download | cpython-25324971fb3922a9e7f01380b23227416d753757.zip cpython-25324971fb3922a9e7f01380b23227416d753757.tar.gz cpython-25324971fb3922a9e7f01380b23227416d753757.tar.bz2 |
Issue #18468: The re.split, re.findall, and re.sub functions and the group()
and groups() methods of match object now always return a string or a bytes
object.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -42,6 +42,10 @@ Core and Builtins Library ------- +- Issue #18468: The re.split, re.findall, and re.sub functions and the group() + and groups() methods of match object now always return a string or a bytes + object. + - Issue #18725: The textwrap module now supports truncating multiline text. - Issue #18776: atexit callbacks now display their full traceback when they |