diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-04-29 20:41:00 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-04-29 20:41:00 (GMT) |
commit | 92fcc9c9919b41a611b1dc084ad8f414f1e4278d (patch) | |
tree | b13d3ca4bad7c446d6b26c8efaffefca3e51eedd /Misc | |
parent | 867475c970417edc25f800c4b2aeb8a3108b62db (diff) | |
download | cpython-92fcc9c9919b41a611b1dc084ad8f414f1e4278d.zip cpython-92fcc9c9919b41a611b1dc084ad8f414f1e4278d.tar.gz cpython-92fcc9c9919b41a611b1dc084ad8f414f1e4278d.tar.bz2 |
Issue #5864: format(1234.5, '.4') gives misleading result
(Backport of r72109 from py3k.)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 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. |