1 Nov
2010
1 Nov
'10
9:17 p.m.
On Mon, Nov 1, 2010 at 10:12 PM, mael <mael.primet@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