Commit 375d0845 authored by Stefan Behnel's avatar Stefan Behnel

fix some minor temp variable leaks in parallel range code

parent a501c6b2
......@@ -8359,7 +8359,7 @@ class ParallelRangeNode(ParallelStatNode):
# And finally, release our privates and write back any closure
# variables
for temp in start_stop_step:
for temp in start_stop_step + (self.chunksize, self.num_threads):
if temp is not None:
temp.generate_disposal_code(code)
temp.free_temps(code)
......
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