[docs] missing quotation mark

Yevgen Yampolskiy genij.math at gmail.com
Mon Jul 2 12:55:41 CEST 2012


http://docs.python.org/library/stdtypes.html

Written:
For example, 'ab c\n\nde fg\rkl\r\n'.splitlines() returns ['ab c', '', 'de
fg', 'kl'], while the same call with splitlines(True) returns ['ab c\n', '\n
, 'de fg\r', 'kl\r\n'].

Should be:

For example, 'ab c\n\nde fg\rkl\r\n'.splitlines() returns ['ab c', '', 'de
fg', 'kl'], while the same call with splitlines(True) returns ['ab c\n', '\n
', 'de fg\r', 'kl\r\n'].

Best,
Yevgen.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/docs/attachments/20120702/79e436a7/attachment-0001.html>


More information about the docs mailing list