[Python-checkins] r62775 - python/trunk/Doc/library/stdtypes.rst

georg.brandl python-checkins at python.org
Tue May 6 19:20:54 CEST 2008


Author: georg.brandl
Date: Tue May  6 19:20:54 2008
New Revision: 62775

Log:
> != (!<).


Modified:
   python/trunk/Doc/library/stdtypes.rst

Modified: python/trunk/Doc/library/stdtypes.rst
==============================================================================
--- python/trunk/Doc/library/stdtypes.rst	(original)
+++ python/trunk/Doc/library/stdtypes.rst	Tue May  6 19:20:54 2008
@@ -1213,11 +1213,11 @@
 | ``'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         |       |


More information about the Python-checkins mailing list