From c1897e716dcd05d258c3b6e41df538c7dccd778a Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Sat, 26 Jun 2010 18:50:39 +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/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 83e036099f..4328f9370b 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -7977,7 +7977,7 @@ PyObject *PyUnicode_Replace(PyObject *obj, } PyDoc_STRVAR(replace__doc__, - "S.replace (old, new[, count]) -> str\n\ + "S.replace(old, new[, count]) -> str\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.40.0