diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-06-26 18:52:26 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-06-26 18:52:26 (GMT) |
commit | 415f340a0c401b0a379f720d55db50c3d76168c3 (patch) | |
tree | 875828a31befcf3d7cbbc06e52b86aa2f39986dc /Objects/unicodeobject.c | |
parent | dbc8ed9ad8327ae9e9231d37ea3af405907ce636 (diff) | |
download | cpython-415f340a0c401b0a379f720d55db50c3d76168c3.zip cpython-415f340a0c401b0a379f720d55db50c3d76168c3.tar.gz cpython-415f340a0c401b0a379f720d55db50c3d76168c3.tar.bz2 |
Merged revisions 82252 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r82252 | ezio.melotti | 2010-06-26 21:50:39 +0300 (Sat, 26 Jun 2010) | 9 lines
Merged revisions 82248 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r82248 | ezio.melotti | 2010-06-26 21:44:42 +0300 (Sat, 26 Jun 2010) | 1 line
Fix extra space.
........
................
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 cc0bbec..4bc7418 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -8039,7 +8039,7 @@ PyObject *PyUnicode_Replace(PyObject *obj, } PyDoc_STRVAR(replace__doc__, - "S.replace (old, new[, count]) -> str\n\ + "S.replace(old, new[, count]) -> str\n\ \n\ Return a copy of S with all occurrences of substring\n\ old replaced by new. If the optional argument count is\n\ |