diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-10-20 13:38:04 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-10-20 13:38:04 (GMT) |
commit | 06bb6746ed6151403e678fee8a37e8c90b9791ea (patch) | |
tree | 20d893669760b7cdf0d26725ba5ae2cfdbda0d8a /Misc | |
parent | afaf48b953b6437a261b991c45cb8700afbcfb0a (diff) | |
download | cpython-06bb6746ed6151403e678fee8a37e8c90b9791ea.zip cpython-06bb6746ed6151403e678fee8a37e8c90b9791ea.tar.gz cpython-06bb6746ed6151403e678fee8a37e8c90b9791ea.tar.bz2 |
Merged revisions 75561 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75561 | mark.dickinson | 2009-10-20 14:33:03 +0100 (Tue, 20 Oct 2009) | 3 lines
Issue #7099: Decimal.is_normal should return True for all nonzero
finite non-subnormal values, even those with exponent > Emax.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -100,6 +100,9 @@ C-API Library ------- +- Issue #7099: Decimal.is_normal now returns True for numbers with exponent + larger than emax. + - Issue #7080: locale.strxfrm() raises a MemoryError on 64-bit non-Windows platforms, and assorted locale fixes by Derk Drukker. |