diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-06-26 18:47:01 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-06-26 18:47:01 (GMT) |
commit | 6327bf1c6ac735d8478fa8dc51ff92efd9c6a339 (patch) | |
tree | 43aae08a4f0ecc4ff65f52957b8a8ff69b16dc0d /Objects/stringobject.c | |
parent | 24c845fc379a135fad1c0842bbc99dd2ab3dcd39 (diff) | |
download | cpython-6327bf1c6ac735d8478fa8dc51ff92efd9c6a339.zip cpython-6327bf1c6ac735d8478fa8dc51ff92efd9c6a339.tar.gz cpython-6327bf1c6ac735d8478fa8dc51ff92efd9c6a339.tar.bz2 |
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.
........
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r-- | Objects/stringobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 4b2eed5..f8f6cef 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\ |