Re: Interrupt Python C API

2009-04-16 Thread googler . 1 . webmaster
On 16 Apr., 11:08, Piet van Oostrum wrote: > > googler.1.webmas...@spamgourmet.com (g1w) wrote: > >g1w> hi, yes, thats true, Alan Touring told us, so it would be nice to let > >g1w> the user abort it. > >g1w> Is there a chance for windows, too? > > I don't know. I have no access to Python on W

Re: Interrupt Python C API

2009-04-16 Thread Piet van Oostrum
> googler.1.webmas...@spamgourmet.com (g1w) wrote: >g1w> hi, yes, thats true, Alan Touring told us, so it would be nice to let >g1w> the user abort it. >g1w> Is there a chance for windows, too? I don't know. I have no access to Python on Windows. Maybe there is setitimer support on Windows.

Re: Interrupt Python C API

2009-04-15 Thread googler . 1 . webmaster
hi, yes, thats true, Alan Touring told us, so it would be nice to let the user abort it. Is there a chance for windows, too? -- http://mail.python.org/mailman/listinfo/python-list

Re: Interrupt Python C API

2009-04-15 Thread Piet van Oostrum
> googler.1.webmas...@spamgourmet.com (g) wrote: >g> Hi, >g> I just have a design problem and don't know how to solve it. I call a >g> function which >g> executes a simple "PyRun_String(...)" command. >g> imagine the script while 1: pass is executed so the app would hang. Is >g> there any cha

Re: Interrupt Python C API

2009-04-14 Thread Tim Roberts
googler.1.webmas...@spamgourmet.com wrote: > >I just have a design problem and don't know how to solve it. I call a >function which >executes a simple "PyRun_String(...)" command. > >imagine the script while 1: pass is executed so the app would hang. Is >there any chance to break out this PyRun_Str

Interrupt Python C API

2009-04-14 Thread googler . 1 . webmaster
Hi, I just have a design problem and don't know how to solve it. I call a function which executes a simple "PyRun_String(...)" command. imagine the script while 1: pass is executed so the app would hang. Is there any chance to break out this PyRun_String-function? I just searched the forums for t