diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-11-29 02:03:32 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-11-29 02:03:32 (GMT) |
commit | 2a1fd059717e480de852f05750e1c892567d4c3b (patch) | |
tree | fa6fdea7172dc7e7cf5c3aeedcddb14529f73fae /Objects/unicodeobject.c | |
parent | 0381f48936b47f4b526f51a8f80787d14c9b2f93 (diff) | |
download | cpython-2a1fd059717e480de852f05750e1c892567d4c3b.zip cpython-2a1fd059717e480de852f05750e1c892567d4c3b.tar.gz cpython-2a1fd059717e480de852f05750e1c892567d4c3b.tar.bz2 |
Fix a small typo in docstring
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 1742425..ba14843 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -7680,7 +7680,7 @@ unicode_rsplit(PyUnicodeObject *self, PyObject *args) } PyDoc_STRVAR(splitlines__doc__, -"S.splitlines([keepends]]) -> list of strings\n\ +"S.splitlines([keepends]) -> list of strings\n\ \n\ Return a list of the lines in S, breaking at line boundaries.\n\ Line breaks are not included in the resulting list unless keepends\n\ |