summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-02-26 07:39:55 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-02-26 07:39:55 (GMT)
commitcda6b6d60d96e6f755da92deb5e4066839095791 (patch)
tree0835098963d975f54d46707bae270e08df2fc4fa /Misc/NEWS
parent408026c7e8c019cf04372a4267c832241e18c62c (diff)
downloadcpython-cda6b6d60d96e6f755da92deb5e4066839095791.zip
cpython-cda6b6d60d96e6f755da92deb5e4066839095791.tar.gz
cpython-cda6b6d60d96e6f755da92deb5e4066839095791.tar.bz2
#14081: The sep and maxsplit parameter to str.split, bytes.split, and bytearray.split may now be passed as keyword arguments.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3565203..bc9fe5d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -223,6 +223,9 @@ Core and Builtins
- PEP 393: flexible string representation. Thanks to Torsten Becker for the
initial implementation, and Victor Stinner for various bug fixes.
+- Issue #14081: The 'sep' and 'maxsplit' parameter to str.split, bytes.split,
+ and bytearray.split may now be passed as keyword arguments.
+
- Issue #13012: The 'keepends' parameter to str.splitlines may now be passed
as a keyword argument: "my_string.splitlines(keepends=True)". The same
change also applies to bytes.splitlines and bytearray.splitlines.