Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
bb5b95e6
Commit
bb5b95e6
authored
Jan 02, 2019
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.29.x'
parents
75d3c896
4d041873
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
CHANGES.rst
CHANGES.rst
+16
-0
Cython/Compiler/Code.py
Cython/Compiler/Code.py
+5
-3
No files found.
CHANGES.rst
View file @
bb5b95e6
...
...
@@ -37,6 +37,22 @@ Other changes
*
Support
for
Python
2.6
was
removed
.
0.29.3
(
2019
-??-??)
===================
Bugs
fixed
----------
*
Some
C
code
for
memoryviews
was
generated
in
a
non
-
deterministic
order
.
Patch
by
Martijn
van
Steenbergen
.
(
Github
issue
#
2779
)
*
C89
compatibility
was
accidentally
lost
since
0.28
.
Patch
by
gastineau
.
(
Github
issue
#
2778
)
*
A
C
compiler
cast
warning
was
resolved
.
Patch
by
Michael
Buesch
.
(
Github
issue
#
2774
)
0.29.2
(
2018
-
12
-
14
)
===================
...
...
Cython/Compiler/Code.py
View file @
bb5b95e6
...
...
@@ -900,9 +900,11 @@ class FunctionState(object):
try-except and try-finally blocks to clean up temps in the
error case.
"""
return sorted([(cname, type)
for (type, manage_ref), freelist in self.temps_free.items() if manage_ref
for cname in freelist[0]])
return sorted([ # Enforce deterministic order.
(cname, type)
for (type, manage_ref), freelist in self.temps_free.items() if manage_ref
for cname in freelist[0]
])
def start_collecting_temps(self):
"""
...
...
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