Skip to content

Commit 94cf508

Browse files
committed
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. ........
1 parent c023ece commit 94cf508

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Objects/stringobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3137,7 +3137,7 @@ replace(PyStringObject *self,
31373137
}
31383138

31393139
PyDoc_STRVAR(replace__doc__,
3140-
"S.replace (old, new[, count]) -> string\n\
3140+
"S.replace(old, new[, count]) -> string\n\
31413141
\n\
31423142
Return a copy of string S with all occurrences of substring\n\
31433143
old replaced by new. If the optional argument count is\n\

Objects/unicodeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7339,7 +7339,7 @@ PyObject *PyUnicode_Replace(PyObject *obj,
73397339
}
73407340

73417341
PyDoc_STRVAR(replace__doc__,
7342-
"S.replace (old, new[, count]) -> unicode\n\
7342+
"S.replace(old, new[, count]) -> unicode\n\
73437343
\n\
73447344
Return a copy of S with all occurrences of substring\n\
73457345
old replaced by new. If the optional argument count is\n\

0 commit comments

Comments
 (0)