[issue34518] Documentation for coroutine objects

2018-09-18 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Since there is work on asyncio docs overhaul I just want to bring this to your attention since I don't know if this has already been resolved with the merged PRs to master and your thoughts on this. Thanks -- nosy: +yselivanov

[issue34518] Documentation for coroutine objects

2018-08-27 Thread Hrvoje Nikšić
Hrvoje Nikšić added the comment: That's exactly it, thanks! I have no idea how I missed it, despite looking (I thought) carefully. But yes, they should be linked from https://docs.python.org/3/library/stdtypes.html . Just as currently there is

[issue34518] Documentation for coroutine objects

2018-08-27 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Is this what you are referring to that has docs for send, close and throw in coroutine objects ? Coroutine object docs : https://docs.python.org/3/reference/datamodel.html#coroutine-objects If the above is the one then I think we can improve on

[issue34518] Documentation for coroutine objects

2018-08-27 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34518] Documentation for coroutine objects

2018-08-27 Thread Hrvoje Nikšić
New submission from Hrvoje Nikšić : Coroutine objects have public methods such as send, close, and throw, which do not appear to be documented. For example, at https://stackoverflow.com/q/51975658/1600898 a StackOverflow user asks how to abort an already created (but not submitted) coroutine