Commit 0c68c5dd authored by Andrew Svetlov's avatar Andrew Svetlov

Update docs for string.zfill

parent 9ac20231
...@@ -1025,8 +1025,9 @@ not be removed until Python 3. The functions defined in this module are: ...@@ -1025,8 +1025,9 @@ not be removed until Python 3. The functions defined in this module are:
.. function:: zfill(s, width) .. function:: zfill(s, width)
Pad a numeric string on the left with zero digits until the given width is Pad a numeric string *s* on the left with zero digits until the
reached. Strings starting with a sign are handled correctly. given *width* is reached. Strings starting with a sign are handled
correctly.
.. function:: replace(s, old, new[, maxreplace]) .. function:: replace(s, old, new[, maxreplace])
......
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