Commit 7c1cb93c authored by Stefan Behnel's avatar Stefan Behnel

Reformat code, add comment.

parent 685b47d3
...@@ -906,9 +906,11 @@ class FunctionState(object): ...@@ -906,9 +906,11 @@ class FunctionState(object):
try-except and try-finally blocks to clean up temps in the try-except and try-finally blocks to clean up temps in the
error case. error case.
""" """
return sorted([(cname, type) return sorted([ # Enforce deterministic order.
for (type, manage_ref), freelist in self.temps_free.items() if manage_ref (cname, type)
for cname in freelist[0]]) for (type, manage_ref), freelist in self.temps_free.items() if manage_ref
for cname in freelist[0]
])
def start_collecting_temps(self): def start_collecting_temps(self):
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment