diff options
author | Georg Brandl <georg@python.org> | 2009-01-03 21:04:55 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-01-03 21:04:55 (GMT) |
commit | 7044b11818cb81d1df0573b3cfe8d9b90befce9b (patch) | |
tree | 0197d5c9c583b486559a4258e6719984629e9dcd /Doc/tutorial/stdlib2.rst | |
parent | c62ef8b4d9648c36218cb0142a6395a00c11885e (diff) | |
download | cpython-7044b11818cb81d1df0573b3cfe8d9b90befce9b.zip cpython-7044b11818cb81d1df0573b3cfe8d9b90befce9b.tar.gz cpython-7044b11818cb81d1df0573b3cfe8d9b90befce9b.tar.bz2 |
Remove tabs from the documentation.
Diffstat (limited to 'Doc/tutorial/stdlib2.rst')
-rw-r--r-- | Doc/tutorial/stdlib2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst index abcf96a..8faa360 100644 --- a/Doc/tutorial/stdlib2.rst +++ b/Doc/tutorial/stdlib2.rst @@ -62,7 +62,7 @@ formatting numbers with group separators:: >>> locale.format("%d", x, grouping=True) '1,234,567' >>> locale.format("%s%.*f", (conv['currency_symbol'], - ... conv['frac_digits'], x), grouping=True) + ... conv['frac_digits'], x), grouping=True) '$1,234,567.80' |