diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-04-29 18:47:07 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-04-29 18:47:07 (GMT) |
commit | d3ca55715028ac22981dadd3e4d9e61180f6e8bf (patch) | |
tree | 5ea324014421cb0a7626a7411aaf492ff2bb4a1e /Misc/NEWS | |
parent | b507d2e07d19692df25a07c82f6d96ff1e4b4313 (diff) | |
download | cpython-d3ca55715028ac22981dadd3e4d9e61180f6e8bf.zip cpython-d3ca55715028ac22981dadd3e4d9e61180f6e8bf.tar.gz cpython-d3ca55715028ac22981dadd3e4d9e61180f6e8bf.tar.bz2 |
Issue #5864: Fix problem with empty code formatting for floats,
where a bogus trailing zero could be added.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 3.1 beta 1? Core and Builtins ----------------- +- Issue #5864: Fix empty format code formatting for floats so that it + never gives more than the requested number of significant digits. + - Issue #5793: Rationalize isdigit / isalpha / tolower, etc. Includes new Py_ISDIGIT / Py_ISALPHA / Py_TOLOWER, etc. in pctypes.h. |