denoising algorithms / working with Github

Stéfan van der Walt stefan at sun.ac.za
Mon Nov 1 17:17:30 EDT 2010


On Mon, Nov 1, 2010 at 10:12 PM, mael <mael.primet at gmail.com> wrote:
> there is however something slightly problematic: when using Cython to
> bind C code, CTRL+C does not work to shut the process, and this might
> get annoying when developping programs that  might  still contain
> some  bugs

If you are not accessing Python objects, you may use

with nogil:
    code snippet here

To release the GIL and allow Ctrl-C.

Cheers
Stéfan



More information about the scikit-image mailing list