[Python-checkins] cpython (3.4): Added missing right bracket (reported by Daryl Klakouski)

tim.golden python-checkins at python.org
Mon Apr 6 12:11:12 CEST 2015


https://hg.python.org/cpython/rev/dde831bcb361
changeset:   95449:dde831bcb361
branch:      3.4
parent:      95446:cc2c7aa2d7a6
user:        Tim Golden <mail at timgolden.me.uk>
date:        Mon Apr 06 11:04:49 2015 +0100
summary:
  Added missing right bracket (reported by Daryl Klakouski)

files:
  Doc/library/stdtypes.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2008,7 +2008,7 @@
 .. 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)``.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list