<div dir="ltr"><div>That seems to work!<br><br></div>I'd just like to add, Armin, that whenever I have a question you are almost always the first to respond and your replies are always very helpful and insightful. It is very much appreciated; thank you. :)<br></div><br><div class="gmail_quote"><div dir="ltr">On Thu, Jul 27, 2017 at 11:59 PM Armin Rigo <<a href="mailto:armin.rigo@gmail.com">armin.rigo@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Tin,<br>
<br>
On 27 July 2017 at 16:17, Tin Tvrtković <<a href="mailto:tinchester@gmail.com" target="_blank">tinchester@gmail.com</a>> wrote:<br>
> My question is, what's the easiest/most natural way of changing the contents<br>
> of this closure cell on PyPy?<br>
<br>
On PyPy you can do (tested on PyPy2):<br>
<br>
    cell = g.func_closure[0]<br>
    cell.__setstate__((43,))    # sets the 'cell_contents' attribute to 43<br>
<br>
<br>
Armin<br>
</blockquote></div>