Kaydet (Commit) 2f06b78d authored tarafından Ezio Melotti's avatar Ezio Melotti

Fix extra space.

üst 62a14db9
...@@ -2806,7 +2806,7 @@ replace(PyStringObject *self, ...@@ -2806,7 +2806,7 @@ replace(PyStringObject *self,
} }
PyDoc_STRVAR(replace__doc__, PyDoc_STRVAR(replace__doc__,
"S.replace (old, new[, count]) -> string\n\ "S.replace(old, new[, count]) -> string\n\
\n\ \n\
Return a copy of string S with all occurrences of substring\n\ Return a copy of string S with all occurrences of substring\n\
old replaced by new. If the optional argument count is\n\ old replaced by new. If the optional argument count is\n\
......
...@@ -7187,7 +7187,7 @@ PyObject *PyUnicode_Replace(PyObject *obj, ...@@ -7187,7 +7187,7 @@ PyObject *PyUnicode_Replace(PyObject *obj,
} }
PyDoc_STRVAR(replace__doc__, PyDoc_STRVAR(replace__doc__,
"S.replace (old, new[, count]) -> unicode\n\ "S.replace(old, new[, count]) -> unicode\n\
\n\ \n\
Return a copy of S with all occurrences of substring\n\ Return a copy of S with all occurrences of substring\n\
old replaced by new. If the optional argument count is\n\ old replaced by new. If the optional argument count is\n\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment