From: Andrew Svetlov Date: Fri, 28 Sep 2012 13:32:27 +0000 (+0300) Subject: Update docs for string.zfill X-Git-Tag: v2.7.4rc1~530 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0c68c5ddb2fc447f13fc25871dea9eb6e444c982;p=thirdparty%2FPython%2Fcpython.git Update docs for string.zfill --- diff --git a/Doc/library/string.rst b/Doc/library/string.rst index a7336c477c02..1a39ca931324 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -1025,8 +1025,9 @@ not be removed until Python 3. The functions defined in this module are: .. function:: zfill(s, width) - Pad a numeric string on the left with zero digits until the given width is - reached. Strings starting with a sign are handled correctly. + Pad a numeric string *s* on the left with zero digits until the + given *width* is reached. Strings starting with a sign are handled + correctly. .. function:: replace(s, old, new[, maxreplace])