From: Tim Golden Date: Mon, 6 Apr 2015 10:04:49 +0000 (+0100) Subject: Added missing right bracket (reported by Daryl Klakouski) X-Git-Tag: v3.5.0a4~159^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=42c235e833ef0bb807453438dca25609605c1dac;p=thirdparty%2FPython%2Fcpython.git Added missing right bracket (reported by Daryl Klakouski) --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 0aa9c1205e4f..a4324b550b3b 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2008,7 +2008,7 @@ expression support in the :mod:`re` module). .. method:: str.zfill(width) Return a copy of the string left filled with ASCII ``'0'`` digits to - make a string of length *width*. A leading sign prefix (``'+'``/``'-'`` + make a string of length *width*. A leading sign prefix (``'+'``/``'-'``) is handled by inserting the padding *after* the sign character rather than before. The original string is returned if *width* is less than or equal to ``len(s)``.