summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Golden <mail@timgolden.me.uk>2015-04-06 10:06:18 (GMT)
committerTim Golden <mail@timgolden.me.uk>2015-04-06 10:06:18 (GMT)
commit3fbcafa47693f03a23b86757916b2c4d01f4deec (patch)
tree07dd477d3a7fe4a696f3bfc7a1ee87c8af7c5e8d
parentcae7bdb4241b928f9da025dce48ec98f1b63d576 (diff)
parent42c235e833ef0bb807453438dca25609605c1dac (diff)
downloadcpython-3fbcafa47693f03a23b86757916b2c4d01f4deec.zip
cpython-3fbcafa47693f03a23b86757916b2c4d01f4deec.tar.gz
cpython-3fbcafa47693f03a23b86757916b2c4d01f4deec.tar.bz2
Merge doc change from 3.4
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index a0dfc4c..26ff309 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)``.