[Python-checkins] cpython (merge 3.2 -> default): merge with 3.2

sandro.tosi python-checkins at python.org
Sat Dec 24 16:02:59 CET 2011


http://hg.python.org/cpython/rev/b2f1518660a8
changeset:   74157:b2f1518660a8
parent:      74154:ea4ff5528e40
parent:      74156:6be3cbbe5013
user:        Sandro Tosi <sandro.tosi at gmail.com>
date:        Sat Dec 24 15:53:51 2011 +0100
summary:
  merge with 3.2

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


diff --git a/Doc/library/string.rst b/Doc/library/string.rst
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -583,7 +583,7 @@
 
    >>> points = 19
    >>> total = 22
-   >>> 'Correct answers: {:.2%}.'.format(points/total)
+   >>> 'Correct answers: {:.2%}'.format(points/total)
    'Correct answers: 86.36%'
 
 Using type-specific formatting::

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


More information about the Python-checkins mailing list