From 6327bf1c6ac735d8478fa8dc51ff92efd9c6a339 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sat, 26 Jun 2010 18:47:01 +0000 Subject: [PATCH] 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. ........ --- Objects/stringobject.c | 2 +- Objects/unicodeobject.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 4b2eed58f8..f8f6cefec7 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -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\ diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 47249cb7fe..392d8fdbf5 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -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\ -- 2.50.0