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/unicodeobject.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/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 47249cb..392d8fd 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\ |