summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-06 17:20:54 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-06 17:20:54 (GMT)
commitc730d5f7e5a6f83b7ac71bc2393d2c848b95f30b (patch)
tree1aa30996e539a41969084428f87842b3773d7d2b /Doc
parent58200228624bc2cfc67f5da58b6524516f726265 (diff)
downloadcpython-c730d5f7e5a6f83b7ac71bc2393d2c848b95f30b.zip
cpython-c730d5f7e5a6f83b7ac71bc2393d2c848b95f30b.tar.gz
cpython-c730d5f7e5a6f83b7ac71bc2393d2c848b95f30b.tar.bz2
> != (!<).
Diffstat (limited to 'Doc')
-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 8f3ae39..85438e0 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1213,11 +1213,11 @@ The conversion types are:
| ``'F'`` | Floating point decimal format. | \(3) |
+------------+-----------------------------------------------------+-------+
| ``'g'`` | Floating point format. Uses lowercase exponential | \(4) |
-| | format if exponent is less than -4 or greater than | |
+| | format if exponent is less than -4 or not less than | |
| | precision, decimal format otherwise. | |
+------------+-----------------------------------------------------+-------+
| ``'G'`` | Floating point format. Uses uppercase exponential | \(4) |
-| | format if exponent is less than -4 or greater than | |
+| | format if exponent is less than -4 or not less than | |
| | precision, decimal format otherwise. | |
+------------+-----------------------------------------------------+-------+
| ``'c'`` | Single character (accepts integer or single | |