summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-04 07:27:54 (GMT)
committerGeorg Brandl <georg@python.org>2007-09-04 07:27:54 (GMT)
commit7a8e58249c0bc798aae5c662a5d752db736cb1ea (patch)
tree9c553ad43d84d02ae87211f33f9b49d1c23e8466 /Doc/library
parenta1e9ef7a621520aa5574fe856a8ad40a69318ce2 (diff)
downloadcpython-7a8e58249c0bc798aae5c662a5d752db736cb1ea.zip
cpython-7a8e58249c0bc798aae5c662a5d752db736cb1ea.tar.gz
cpython-7a8e58249c0bc798aae5c662a5d752db736cb1ea.tar.bz2
Fix the string formatting docs for now; if the feature is changed again, the docs can be changed too.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/string.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst
index b0061b7..41b8a49 100644
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -416,8 +416,7 @@ The available presentation types for floating point and decimal values are:
| ``'%'`` | Percentage. Multiplies the number by 100 and displays |
| | in fixed (``'f'``) format, followed by a percent sign. |
+---------+----------------------------------------------------------+
- | None | similar to ``'g'``, except that it prints at least one |
- | | digit after the decimal point. |
+ | None | the same as ``'g'`` |
+---------+----------------------------------------------------------+