projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8e8fbea
)
#14957: fix doc typo.
author
R David Murray
<rdmurray@bitdance.com>
Sat, 2 Jun 2012 15:20:29 +0000
(11:20 -0400)
committer
R David Murray
<rdmurray@bitdance.com>
Sat, 2 Jun 2012 15:20:29 +0000
(11:20 -0400)
Doc/library/stdtypes.rst
patch
|
blob
|
history
diff --git
a/Doc/library/stdtypes.rst
b/Doc/library/stdtypes.rst
index 8f7fc5cd312e81d40b546c8ae5f6cd9539a78bda..b2381e6d4b9e739177e804d6c908677738d1359c 100644
(file)
--- a/
Doc/library/stdtypes.rst
+++ b/
Doc/library/stdtypes.rst
@@
-1334,7
+1334,7
@@
functions based on regular expressions.
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 ``spli
ne
lines(True)``
+ ``['ab c', '', 'de fg', 'kl']``, while the same call with ``spli
t
lines(True)``
returns ``['ab c\n', '\n, 'de fg\r', 'kl\r\n']``.