diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-12-27 14:55:57 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-12-27 14:55:57 (GMT) |
commit | 465728364749e903fb4293b2f7a266b58de6bde4 (patch) | |
tree | f9d2a61c2151a4afadf7afe0356efeb21f63a912 /Misc | |
parent | 13c2ef92f81092a4e46382e52bf586eb6bf512ed (diff) | |
download | cpython-465728364749e903fb4293b2f7a266b58de6bde4.zip cpython-465728364749e903fb4293b2f7a266b58de6bde4.tar.gz cpython-465728364749e903fb4293b2f7a266b58de6bde4.tar.bz2 |
Issue #1811: Improve accuracy and consistency of true division for integers.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ What's New in Python 2.7 alpha 2? Core and Builtins ----------------- +- Issue #1811: improve accuracy and cross-platform consistency for + true division of integers: the result of a/b is now correctly + rounded for ints a and b (at least on IEEE 754 platforms), and in + particular does not depend on the internal representation of a long. + - Issue #6108: unicode(exception) and str(exception) should return the same message when only __str__ (and not __unicode__) is overridden in the subclass. |