Issue2773
Created on 2008-05-06 16:28 by zybi, last changed 2008-05-06 17:21 by georg.brandl.
| msg66318 (view) |
Author: Artur Zaprzała (zybi) |
Date: 2008-05-06 16:28 |
|
Description of 'g' and 'G' conversion types of string formatting
operator at http://www.python.org/doc/2.5.2/lib/typesseq-strings.html is:
Floating point format. Uses exponential format if exponent is greater
than -4 or less than precision, decimal format otherwise.
Should be:
Floating point format. Uses exponential format if exponent is less
than -4 or not less than precision, decimal format otherwise.
|
| msg66321 (view) |
Author: Georg Brandl (georg.brandl) |
Date: 2008-05-06 17:11 |
|
Thanks, fixed in r62774.
|
| msg66322 (view) |
Author: Artur Zaprzała (zybi) |
Date: 2008-05-06 17:18 |
|
The fix is wrong. not less == greater than or equal to
|
| msg66323 (view) |
Author: Georg Brandl (georg.brandl) |
Date: 2008-05-06 17:21 |
|
Argh, fixed in r62775.
|
|
| Date |
User |
Action |
Args |
| 2008-05-06 17:21:10 | georg.brandl | set | messages:
+ msg66323 |
| 2008-05-06 17:18:38 | zybi | set | messages:
+ msg66322 |
| 2008-05-06 17:11:52 | georg.brandl | set | status: open -> closed resolution: fixed messages:
+ msg66321 |
| 2008-05-06 16:28:46 | zybi | create | |
|