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.
........
This commit is contained in:
Ezio Melotti 2010-06-26 18:47:01 +00:00
parent 24c845fc37
commit 6327bf1c6a
2 changed files with 2 additions and 2 deletions

View File

@ -3137,7 +3137,7 @@ replace(PyStringObject *self,
}
PyDoc_STRVAR(replace__doc__,
"S.replace (old, new[, count]) -> string\n\
"S.replace(old, new[, count]) -> string\n\
\n\
Return a copy of string S with all occurrences of substring\n\
old replaced by new. If the optional argument count is\n\

View File

@ -7339,7 +7339,7 @@ PyObject *PyUnicode_Replace(PyObject *obj,
}
PyDoc_STRVAR(replace__doc__,
"S.replace (old, new[, count]) -> unicode\n\
"S.replace(old, new[, count]) -> unicode\n\
\n\
Return a copy of S with all occurrences of substring\n\
old replaced by new. If the optional argument count is\n\