On 7/21/2014 2:38 PM, Yaşar Arabacı wrote:
I was reading
https://docs.python.org/3/library/asyncio-eventloop.html#example-set-signal-handlers-for-sigint-and-sigterm
and wanted to test the example,
With 3.4.0, 3.4.1, or 3.5.0a0 in the repository (available to view at
hg.python.org, I believe)?
On Tue, Jul 22, 2014 at 5:15 AM, Mark Lawrence wrote:
> On 21/07/2014 20:00, Chris Angelico wrote:
>>
>> On Tue, Jul 22, 2014 at 4:55 AM, Yaşar Arabacı
>> wrote:
>>>
>>> After reading the next page of the documentation, I realized that
>>> "add_signal_handler() and remove_signal_handler() are not
On 21/07/2014 20:00, Chris Angelico wrote:
On Tue, Jul 22, 2014 at 4:55 AM, Yaşar Arabacı wrote:
After reading the next page of the documentation, I realized that
"add_signal_handler() and remove_signal_handler() are not supported"
on Windows. Moreover, dev3.5 version of the docs are also sayin
On Tue, Jul 22, 2014 at 4:55 AM, Yaşar Arabacı wrote:
> After reading the next page of the documentation, I realized that
> "add_signal_handler() and remove_signal_handler() are not supported"
> on Windows. Moreover, dev3.5 version of the docs are also saying that
> they are not supported, so I th
-- Forwarded message --
From: Yaşar Arabacı
Date: 2014-07-21 21:54 GMT+03:00
Subject: Re: Event loop documentation error
To: Chris Angelico
2014-07-21 21:45 GMT+03:00 Chris Angelico :
> SIGINT is a Unix signal. There is an equivalent for Windows, but it
> wouldn
On Tue, Jul 22, 2014 at 4:38 AM, Yaşar Arabacı wrote:
> Traceback (most recent call last):
> File "C:/Users/gorki/Documents/Python Scripts/as-io.py", line 14, in
>
> loop.add_signal_handler(SIGINT, partial(ask_exit, "SIGINT"))
> File "C:\Python34\lib\asyncio\events.py", line 329, in add_
I was reading
https://docs.python.org/3/library/asyncio-eventloop.html#example-set-signal-handlers-for-sigint-and-sigterm
and wanted to test the example, however, I am getting this error when
I run the code;
Traceback (most recent call last):
File "C:/Users/gorki/Documents/Python Scripts/as-io.