Re: [Cython] [cython-users] Cython 0.27 beta 1 is available

2017-09-19 Thread Jason Madden
> On Sep 19, 2017, at 02:49, Stefan Behnel wrote: > > Right, I forgot that alpha releases always scream for not being touched. ;) > > So here's the same thing as beta-1 to get things rolling. > > https://github.com/cython/cython/archive/0.27b1.tar.gz > > Changelog: > https://github.com/cytho

Re: [Cython] bug report on cython-mode.el: freezes when using which-function-mode

2016-04-24 Thread Jason Madden
> On Apr 24, 2016, at 03:15, Nathaniel Smith wrote: > > I don't know whether the same thing happens with released versions of > emacs. I see the same behaviour with the 24.5 release of emacs (stock python.el + elpy). Turning off which-function-mode seems to solve it (thanks for the tip, BTW).

Re: [Cython] [cython-users] Re: Cython 0.23.5 released

2016-03-31 Thread Jason Madden
On Thursday, 31 March 2016 00:50:57 UTC-5, Matthew Brett wrote: > > On Wed, Mar 30, 2016 at 2:35 PM, Forest Gregg > wrote: > > Thanks! > > > > Are there also plans to post Windows wheels for cython 0.23.5 to pypi > like > > there was for 0.23.4? > > I did that earlier today, using an Appveyo

Re: [Cython] [cython-users] Re: Cython 0.23.5 released

2016-03-31 Thread Jason Madden
> On Mar 31, 2016, at 00:50, Matthew Brett wrote: > > On Wed, Mar 30, 2016 at 2:35 PM, Forest Gregg wrote: >> Thanks! >> >> Are there also plans to post Windows wheels for cython 0.23.5 to pypi like >> there was for 0.23.4? > > I did that earlier today, using an Appveyor build system : > > h

Re: [Cython] Cython alpha 0.24

2016-03-19 Thread Jason Madden
least merit a mention in CHANGES.rst? Thanks, jason On Sat, Mar 19, 2016 at 9:44 AM, Jason Madden wrote: > gevent compiles and passes all its tests with this release. > > However, compilation produces 420 warnings of the form: > > warning: gevent/corecext.pyx:1893:4: 'pro

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

[Cython] Bug - PyPy tuple leak in __Pyx_PyObject_CallOneArg?

2015-10-10 Thread Jason Madden
Hello, I'm one of the maintainers of the gevent concurrency library, which has recently been ported to run on PyPy. Under PyPy, a small portion of the code is compiled with Cython in order to get the desired atomic semantics (specifically, a semaphore class). We recently had a user report an ea