summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-06-14 13:04:44 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-06-14 13:04:44 (GMT)
commitfd7f19ea67b0585929e723303c40de9153bba91d (patch)
treea57b4cf8bf30133e200fcd048c577cd9726f3578
parenta8cadb2243759498dfc6b41c8cb29228d8b96f5d (diff)
downloadcpython-fd7f19ea67b0585929e723303c40de9153bba91d.zip
cpython-fd7f19ea67b0585929e723303c40de9153bba91d.tar.gz
cpython-fd7f19ea67b0585929e723303c40de9153bba91d.tar.bz2
Issue #25843: Fix the NEWS entry
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index eb810d0..e132b96 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -124,7 +124,7 @@ Core and Builtins
- Issue #25843: When compiling code, don't merge constants if they are equal
but have a different types. For example, ``f1, f2 = lambda: 1, lambda: 1.0``
is now correctly compiled to two different functions: ``f1()`` returns ``1``
- (``int``) and ``f2()`` returns ``1.0`` (``int``), even if ``1`` and ``1.0``
+ (``int``) and ``f2()`` returns ``1.0`` (``float``), even if ``1`` and ``1.0``
are equal.
- Issue #22995: [UPDATE] Comment out the one of the pickleability tests in