From: Benjamin Peterson Date: Tue, 23 Sep 2014 02:43:50 +0000 (-0400) Subject: fix error in split() examples (closes #22459) X-Git-Tag: v3.4.3rc1~630 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb83ffe1b3ffda0179b83244a4c25afe367c1b4d;p=thirdparty%2FPython%2Fcpython.git fix error in split() examples (closes #22459) Patch by Raúl Cumplido. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 2dd57bce8df6..8778212cdb61 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1830,7 +1830,7 @@ expression support in the :mod:`re` module). >>> '1,2,3'.split(',') ['1', '2', '3'] >>> '1,2,3'.split(',', maxsplit=1) - ['1', '2 3'] + ['1', '2,3'] >>> '1,2,,3,'.split(',') ['1', '2', '', '3', ''] @@ -2695,7 +2695,7 @@ produce new objects. >>> b'1,2,3'.split(b',') [b'1', b'2', b'3'] >>> b'1,2,3'.split(b',', maxsplit=1) - [b'1', b'2 3'] + [b'1', b'2,3'] >>> b'1,2,,3,'.split(b',') [b'1', b'2', b'', b'3', b''] diff --git a/Misc/ACKS b/Misc/ACKS index 29283094c978..4a69dfe6e115 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -296,6 +296,7 @@ Drew Csillag Joaquin Cuenca Abela John Cugini Tom Culliton +Raúl Cumplido Antonio Cuni Brian Curtin Lisandro Dalcin