summaryrefslogtreecommitdiffstats
path: root/Doc/library/stdtypes.rst
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2008-07-17 18:30:48 (GMT)
committerEric Smith <eric@trueblade.com>2008-07-17 18:30:48 (GMT)
commita4fac36eb3ee70529482d43d2a484d5ff5d18398 (patch)
treef28ae6605017ff42d83cdf78978391b4c7237079 /Doc/library/stdtypes.rst
parentddc5669fd90135ba345a9f1a98a11c67a97f833e (diff)
downloadcpython-a4fac36eb3ee70529482d43d2a484d5ff5d18398.zip
cpython-a4fac36eb3ee70529482d43d2a484d5ff5d18398.tar.gz
cpython-a4fac36eb3ee70529482d43d2a484d5ff5d18398.tar.bz2
Merged revisions 65069 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r65069 | eric.smith | 2008-07-17 13:48:39 -0400 (Thu, 17 Jul 2008) | 1 line Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. ........
Diffstat (limited to 'Doc/library/stdtypes.rst')
-rw-r--r--Doc/library/stdtypes.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 47bf42c..5a20969 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1223,9 +1223,9 @@ The conversion types are:
+------------+-----------------------------------------------------+-------+
| ``'E'`` | Floating point exponential format (uppercase). | \(3) |
+------------+-----------------------------------------------------+-------+
-| ``'f'`` | Floating point decimal format. | \(3) |
+| ``'f'`` | Floating point decimal format (lowercase). | \(3) |
+------------+-----------------------------------------------------+-------+
-| ``'F'`` | Floating point decimal format. | \(3) |
+| ``'F'`` | Floating point decimal format (uppercase). | \(3) |
+------------+-----------------------------------------------------+-------+
| ``'g'`` | Floating point format. Uses lowercase exponential | \(4) |
| | format if exponent is less than -4 or not less than | |