Fix extra space.

This commit is contained in:
Ezio Melotti 2010-06-26 18:44:42 +00:00
parent 62a14db9f4
commit 2f06b78d61
2 changed files with 2 additions and 2 deletions

View File

@ -2806,7 +2806,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

@ -7187,7 +7187,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\