Re: [Cython] gilnanny

2011-04-19 Thread Sturla Molden
Den 19.04.2011 07:08, skrev Stefan Behnel: Yes, that's what this is all about. https://github.com/markflorisson88/cython/commits/master Great :) Sturla ___ cython-devel mailing list cython-devel@python.org http://mail.python.org/mailman/listinfo/cy

Re: [Cython] gilnanny

2011-04-19 Thread mark florisson
On 18 April 2011 22:26, Robert Bradshaw wrote: > On Mon, Apr 18, 2011 at 12:08 PM, mark florisson > wrote: >> Can I add a gilnanny to refnanny? I want to do a PyThreadState_Get() >> for every refnanny inc- and decref, so that it will issue a fatal >> error whenever reference counting is done with

Re: [Cython] gilnanny

2011-04-18 Thread Stefan Behnel
Sturla Molden, 19.04.2011 00:18: Den 18.04.2011 22:26, skrev Robert Bradshaw: On Mon, Apr 18, 2011 at 12:08 PM, mark florisson wrote: Can I add a gilnanny to refnanny? I want to do a PyThreadState_Get() for every refnanny inc- and decref, so that it will issue a fatal error whenever reference c

Re: [Cython] gilnanny

2011-04-18 Thread Sturla Molden
Den 18.04.2011 22:26, skrev Robert Bradshaw: On Mon, Apr 18, 2011 at 12:08 PM, mark florisson wrote: Can I add a gilnanny to refnanny? I want to do a PyThreadState_Get() for every refnanny inc- and decref, so that it will issue a fatal error whenever reference counting is done without the gil,

Re: [Cython] gilnanny

2011-04-18 Thread Robert Bradshaw
On Mon, Apr 18, 2011 at 12:08 PM, mark florisson wrote: > Can I add a gilnanny to refnanny? I want to do a PyThreadState_Get() > for every refnanny inc- and decref, so that it will issue a fatal > error whenever reference counting is done without the gil, to make > sure we never do any illegal thi

[Cython] gilnanny

2011-04-18 Thread mark florisson
Can I add a gilnanny to refnanny? I want to do a PyThreadState_Get() for every refnanny inc- and decref, so that it will issue a fatal error whenever reference counting is done without the gil, to make sure we never do any illegal things in nogil code blocks. While I'm at it, I also want to add a p