From: Georg Brandl Date: Tue, 6 May 2008 17:20:54 +0000 (+0000) Subject: > != (!<). X-Git-Tag: v2.6a3~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c730d5f7e5a6f83b7ac71bc2393d2c848b95f30b;p=python > != (!<). --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 8f3ae39714..85438e0301 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 | |