Re: [Cython] Function calls and ref counts

2016-03-19 Thread John Ehresman
On 3/15/16 5:55 PM, Jeroen Demeyer wrote: I cannot reproduce the problem... It might be relevant to mention things like OS and Python version. It may only crash in a pydebug build since freed memory isn't necessarily overwritten right away. I tested with a pydebug build of Python 2.7 on OS

[Cython] PEP 515: underscores in number literals

2016-03-19 Thread Stefan Behnel
Hi! PEP 515 proposes to allow underscores in number literals to provide a visual digit separator, e.g. for thousands, nibbles, hex-bytes/words, etc. https://www.python.org/dev/peps/pep-0515/ I've implemented it for Cython: https://github.com/cython/cython/pull/499 I think it's safe enough to s

Re: [Cython] Cython alpha 0.24

2016-03-19 Thread Joshua
On Friday, March 11, 2016 at 3:24:26 AM UTC-5, Robert Bradshaw wrote: > > We are getting ready to push a new major release. A first alpha is up > at http://cython.org/release/Cython-0.24a0.tar.gz > > To avoid surprises, please test and report. > > Thanks, > Robert > I ran across a compilat

Re: [Cython] Cython alpha 0.24

2016-03-19 Thread Jason Madden
gevent compiles and passes all its tests with this release. However, compilation produces 420 warnings of the form: warning: gevent/corecext.pyx:1893:4: 'property rpid:' syntax is deprecated, use '@property' That's a lot of warnings. As I understand it, this was added with pull #462 which is

Re: [Cython] Cython alpha 0.24

2016-03-19 Thread Jason Madden
[Ack, really sorry for the premature send. Here's the whole thing:] gevent compiles and passes all its tests with this release. However, compilation produces 420 warnings of the form: warning: gevent/corecext.pyx:1893:4: 'property rpid:' syntax is deprecated, use '@property' That's a lot of w

Re: [Cython] Cython alpha 0.24

2016-03-19 Thread Robert Bradshaw
On Sat, Mar 19, 2016 at 7:51 AM, Jason Madden wrote: > [Ack, really sorry for the premature send. Here's the whole thing:] > > gevent compiles and passes all its tests with this release. > > However, compilation produces 420 warnings of the form: > > warning: gevent/corecext.pyx:1893:4: 'propert