[issue33708] Doc: Asyncio's Event documentation typo.

2018-10-19 Thread STINNER Victor
STINNER Victor added the comment: The asyncio documentation has been rewritten. It seems like the missing references issue is gone. -- nosy: +vstinner resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Timo Furrer
Change by Timo Furrer : -- keywords: +patch pull_requests: +6905 stage: -> patch review ___ Python tracker ___ ___

[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Timo Furrer
Timo Furrer added the comment: I'm working on a patch :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Timo Furrer
Timo Furrer added the comment: The link to the set method is also wrong. It points to https://docs.python.org/3/library/stdtypes.html#set instead of https://docs.python.org/3/library/asyncio-sync.html#asyncio.Event.set -- ___ Python tracker

[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Timo Furrer
Timo Furrer added the comment: Yes, sorry, my bad. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Марк Коренберг
Марк Коренберг added the comment: NO! it points to asyncio.wait() but should point to asyncio.Event.wait() -- ___ Python tracker ___

[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Timo Furrer
Timo Furrer added the comment: It seems like it's pointing to the correct location, it's just that depending on the size of your screen the "wait" section is too far to the bottom and therefore it can't quite scroll to the heading of the wait heading so that it's on top of your screen ;)

[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Марк Коренберг
New submission from Марк Коренберг : https://docs.python.org/3/library/asyncio-sync.html#asyncio.Event : Class implementing event objects. An event manages a flag that can be set to true with the set() method and reset to false with the clear() method. The -> wait() <- method blocks