From: Ezio Melotti Date: Sat, 26 Jun 2010 18:52:26 +0000 (+0000) Subject: Merged revisions 82252 via svnmerge from X-Git-Tag: v3.1.3rc1~587 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=415f340a0c401b0a379f720d55db50c3d76168c3;p=thirdparty%2FPython%2Fcpython.git Merged revisions 82252 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r82252 | ezio.melotti | 2010-06-26 21:50:39 +0300 (Sat, 26 Jun 2010) | 9 lines 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. ........ ................ --- diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index cc0bbec1f141..4bc7418ba787 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -8039,7 +8039,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\