summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-04-29 18:47:07 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-04-29 18:47:07 (GMT)
commitd3ca55715028ac22981dadd3e4d9e61180f6e8bf (patch)
tree5ea324014421cb0a7626a7411aaf492ff2bb4a1e /Misc/NEWS
parentb507d2e07d19692df25a07c82f6d96ff1e4b4313 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bb4c134..01313f8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.