![](https://secure.gravatar.com/avatar/779e1633fecdd62c4c386fc953c5d3ec.jpg?s=120&d=mm&r=g)
July 27, 2017
9:59 p.m.
Hi Tin, On 27 July 2017 at 16:17, Tin Tvrtković <tinchester@gmail.com> wrote:
My question is, what's the easiest/most natural way of changing the contents of this closure cell on PyPy?
On PyPy you can do (tested on PyPy2): cell = g.func_closure[0] cell.__setstate__((43,)) # sets the 'cell_contents' attribute to 43 Armin