summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-08-21 17:03:08 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-08-21 17:03:08 (GMT)
commit54cd1969eacf27405e2fe265817ee60a8ece93ab (patch)
tree870ee7eab92b4bbd6496611939b9f022a2f4dba1 /Misc
parentd7f3cdd07d7387787c18c0c34a71ee00d77a26c8 (diff)
downloadcpython-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/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 89dcaa2..cefe831 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.