Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
fd7f19ea
Commit
fd7f19ea
authored
Jun 14, 2016
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #25843: Fix the NEWS entry
parent
a8cadb22
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Misc/NEWS
Misc/NEWS
+1
-1
No files found.
Misc/NEWS
View file @
fd7f19ea
...
@@ -124,7 +124,7 @@ Core and Builtins
...
@@ -124,7 +124,7 @@ Core and Builtins
- Issue #25843: When compiling code, don'
t
merge
constants
if
they
are
equal
- 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
``
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
``
is
now
correctly
compiled
to
two
different
functions
:
``
f1
()``
returns
``
1
``
(``
int
``)
and
``
f2
()``
returns
``
1.0
``
(``
in
t
``),
even
if
``
1
``
and
``
1.0
``
(``
int
``)
and
``
f2
()``
returns
``
1.0
``
(``
floa
t
``),
even
if
``
1
``
and
``
1.0
``
are
equal
.
are
equal
.
-
Issue
#
22995
:
[
UPDATE
]
Comment
out
the
one
of
the
pickleability
tests
in
-
Issue
#
22995
:
[
UPDATE
]
Comment
out
the
one
of
the
pickleability
tests
in
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment