diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-06-26 18:44:42 +0000 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-06-26 18:44:42 +0000 |
commit | 2f06b78d61e58f39c2833048e7eab45ae6a93e57 (patch) | |
tree | 120c340768e33d3e38e72080803fe09d91c17405 /Objects/unicodeobject.c | |
parent | 62a14db9f4f7b77bfc5663902f0d05f74901e950 (diff) | |
download | cpython-git-2f06b78d61e58f39c2833048e7eab45ae6a93e57.tar.gz |
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 0e378a5a40..8b3b861bee 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -7187,7 +7187,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\ |