changeset: 102031:a36238de31ae branch: 3.5 parent: 102028:ef234a5c5817 user: Victor Stinner date: Tue Jun 14 15:04:44 2016 +0200 files: Misc/NEWS description: Issue #25843: Fix the NEWS entry diff -r ef234a5c5817 -r a36238de31ae Misc/NEWS --- a/Misc/NEWS Tue Jun 14 11:29:31 2016 +0000 +++ b/Misc/NEWS Tue Jun 14 15:04:44 2016 +0200 @@ -124,7 +124,7 @@ - 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