summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-08-13 12:07:01 (GMT)
committerGeorg Brandl <georg@python.org>2009-08-13 12:07:01 (GMT)
commitd1ea9dc9e677e01b621b7e921c556e51778e0f37 (patch)
treefdb9397a7dcd4705ec990d53e367f8607050206b /Doc/tutorial
parentbcc484e6d63b0551ce072101dd0421a8912c5be1 (diff)
downloadcpython-d1ea9dc9e677e01b621b7e921c556e51778e0f37.zip
cpython-d1ea9dc9e677e01b621b7e921c556e51778e0f37.tar.gz
cpython-d1ea9dc9e677e01b621b7e921c556e51778e0f37.tar.bz2
Merged revisions 74405 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k ................ r74405 | georg.brandl | 2009-08-13 14:06:43 +0200 (Do, 13 Aug 2009) | 9 lines Merged revisions 74404 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74404 | georg.brandl | 2009-08-13 14:05:52 +0200 (Do, 13 Aug 2009) | 1 line Use locale.format_string() for more than one specifier. ........ ................
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/stdlib2.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst
index 4d7f1c5..2d52591 100644
--- a/Doc/tutorial/stdlib2.rst
+++ b/Doc/tutorial/stdlib2.rst
@@ -61,8 +61,8 @@ formatting numbers with group separators::
>>> x = 1234567.8
>>> locale.format("%d", x, grouping=True)
'1,234,567'
- >>> locale.format("%s%.*f", (conv['currency_symbol'],
- ... conv['frac_digits'], x), grouping=True)
+ >>> locale.format_string("%s%.*f", (conv['currency_symbol'],
+ ... conv['frac_digits'], x), grouping=True)
'$1,234,567.80'