diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-08-21 17:03:08 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-08-21 17:03:08 (GMT) |
commit | 54cd1969eacf27405e2fe265817ee60a8ece93ab (patch) | |
tree | 870ee7eab92b4bbd6496611939b9f022a2f4dba1 /Misc | |
parent | d7f3cdd07d7387787c18c0c34a71ee00d77a26c8 (diff) | |
download | cpython-54cd1969eacf27405e2fe265817ee60a8ece93ab.zip cpython-54cd1969eacf27405e2fe265817ee60a8ece93ab.tar.gz cpython-54cd1969eacf27405e2fe265817ee60a8ece93ab.tar.bz2 |
Issue #26984: int() now always returns an instance of exact int.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ What's New in Python 3.6.0 beta 1 Core and Builtins ----------------- +- Issue #26984: int() now always returns an instance of exact int. + - Issue #25604: Fix a minor bug in integer true division; this bug could potentially have caused off-by-one-ulp results on platforms with unreliable ldexp implementations. |