]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #25843: Fix the NEWS entry
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 14 Jun 2016 13:04:44 +0000 (15:04 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 14 Jun 2016 13:04:44 +0000 (15:04 +0200)
Misc/NEWS

index eb810d00e1764c568c0a801d1df4c6c84d5c64b9..e132b968ca3c263b9cdcc7825ba26f39bda55616 100644 (file)
--- 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