Victor Stinner

Results 709 comments of Victor Stinner

> Note that wait_for() does not wait until the task is cancelled. This sentence is unclear, or wrong. If a task is cancelled, wait_for() immediatly returns (raise CancelledError). If wait_for()...

> In Python 3.6, sock.close() will try to close the same FD, will receive an EBADF from the OS, and propagate the OSError. Hum, the error is more how is...

Even after reading your example many times, I'm still confused. I don't understand who "owns" the socket. I would expect that since you pass a socket to asyncio, the event...

Now for uvloop, I'm sorry, I don't know understand how it is implemented exactly, so I don't know how uvloop should understand it. I mean: maybe the default behaviour when...

"Correct, ideally users shouldn't close sockets manually after they pass them to APIs like create_server" Hum, I would use a strong wrong: users must not close a socket after passing...

Oh, the "child watcher" part of subprocesses is nearly not documented in asyncio :-/ With your example, the child watcher never runs. You have to configure it explicitly with: ```...

I attached a patch on the Python issue.

2015-10-27 12:44 GMT+09:00 Yury Selivanov [email protected]: > If implemented in C, the file IO thread can release the GIL, hence providing a bit better performance. Or someone might implement asyncio...

2015-10-27 13:46 GMT+09:00 Yury Selivanov [email protected]: > I don't want to focus this particular discussion on performance questions -- I think that the main issue is to arrive at some...

No activity for 4 years, I close the issue.