Commit 9ac20231 authored by Andrew Svetlov's avatar Andrew Svetlov

Update documentation for string.replace. Thanks to docs@

parent bf2ad346
......@@ -1029,9 +1029,9 @@ not be removed until Python 3. The functions defined in this module are:
reached. Strings starting with a sign are handled correctly.
.. function:: replace(str, old, new[, maxreplace])
.. function:: replace(s, old, new[, maxreplace])
Return a copy of string *str* with all occurrences of substring *old* replaced
Return a copy of string *s* with all occurrences of substring *old* replaced
by *new*. If the optional argument *maxreplace* is given, the first
*maxreplace* occurrences are replaced.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment