(original) (raw)

changeset: 77298:3bb35ad5d9da parent: 77296:4b4044292d09 parent: 77297:4d9b3a58e208 user: R David Murray rdmurray@bitdance.com date: Sat Jun 02 11:20:53 2012 -0400 files: Doc/library/stdtypes.rst description: #14957: fix doc typo. diff -r 4b4044292d09 -r 3bb35ad5d9da Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst Sat Jun 02 17:16:33 2012 +0200 +++ b/Doc/library/stdtypes.rst Sat Jun 02 11:20:53 2012 -0400 @@ -1358,7 +1358,7 @@ the returned list does ``not`` have an empty last element. For example, ``'ab c\n\nde fg\rkl\r\n'.splitlines()`` returns - ``['ab c', '', 'de fg', 'kl']``, while the same call with ``splinelines(True)`` + ``['ab c', '', 'de fg', 'kl']``, while the same call with ``splitlines(True)`` returns ``['ab c\n', '\n, 'de fg\r', 'kl\r\n']``. /rdmurray@bitdance.com