Re: [Cython] [cython-users] mimetype and icon for Cython programs?

2013-05-08 Thread Stefan Behnel
Shriramana Sharma, 09.05.2013 05:17: > On Thu, May 9, 2013 at 5:30 AM, Robert Bradshaw wrote: >> Feel free to use >> the log at http://en.wikipedia.org/wiki/File:Cython-logo.svg (with our >> without the trailing ython). > > For proper transparency I removed the white rectangle used to make O > loo

Re: [Cython] nogil doesn't seem to work when defined on extern cpp functions

2013-05-08 Thread Greg Ewing
Ryan Pessa wrote: It doesn't seem like Cython respects the `nogil` statement on extern cpp functions. The nogil declaration doesn't work that way. Declaring a function as nogil just says that it's safe to call it without the GIL -- it doesn't actually cause the GIL to be released. You need a 'w

Re: [Cython] Cython 0.19.1 release candidate

2013-05-08 Thread Stefan Behnel
Robert Bradshaw, 08.05.2013 21:00: > It'd be nice to pull in > https://github.com/cython/cython/commit/5574592e569e0cce5f1277b6f0c441d6d19122b5 > as well. Done. Stefan ___ cython-devel mailing list cython-devel@python.org http://mail.python.org/mailman

Re: [Cython] Cython 0.19.1 release candidate

2013-05-08 Thread Robert Bradshaw
It'd be nice to pull in https://github.com/cython/cython/commit/5574592e569e0cce5f1277b6f0c441d6d19122b5 as well. On Wed, May 8, 2013 at 7:25 AM, Stefan Behnel wrote: > Hi, > > here's a release candidate for 0.19.1. I accept feedback for the next two > days, then I'll send the final release out.

Re: [Cython] project proposal: line tracing/profiling, coverage, etc.

2013-05-08 Thread Stefan Behnel
Stefan Behnel, 08.05.2013 20:43: > in the past, Robert and I have invested some work into supporting profiling > and tracing in Cython, and I would like to see this finalised. While Python > level tracing and profiling might not seem like the ideal tools for > performance critical Cython code, they

Re: [Cython] nogil doesn't seem to work when defined on extern cpp functions

2013-05-08 Thread Stefan Behnel
Hi, this question is better suited for the cython-users mailing list. Ryan Pessa, 08.05.2013 20:09: > I ran into an interesting problem today. It doesn't seem like Cython > respects the `nogil` statement on extern cpp functions. I am trying to use > a blocking I/O function, and am running it in s

[Cython] project proposal: line tracing/profiling, coverage, etc.

2013-05-08 Thread Stefan Behnel
Hi, in the past, Robert and I have invested some work into supporting profiling and tracing in Cython, and I would like to see this finalised. While Python level tracing and profiling might not seem like the ideal tools for performance critical Cython code, they are actually pretty handy when much

[Cython] nogil doesn't seem to work when defined on extern cpp functions

2013-05-08 Thread Ryan Pessa
Hello, I ran into an interesting problem today. It doesn't seem like Cython respects the `nogil` statement on extern cpp functions. I am trying to use a blocking I/O function, and am running it in secondary thread so I can use another library function to cancel it. I have tried it both on the `ex

[Cython] Cython 0.19.1 release candidate

2013-05-08 Thread Stefan Behnel
Hi, here's a release candidate for 0.19.1. I accept feedback for the next two days, then I'll send the final release out. http://cython.org/release/Cython-0.19.1rc1.tar.gz The changelog is on github: https://github.com/cython/cython/blob/1491df80144a13ac4c6d8027283f7619a716fb58/CHANGES.rst St