Issue 22037: Poor grammar in asyncio TCP echo client example (original) (raw)

Issue22037

Created on 2014-07-22 16:51 by Aaron1011, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg223673 - (view) Author: Aaron Hill (Aaron1011) * Date: 2014-07-22 16:51
The last sentence in the explanation of the TCP echo client currently reads: "At run_until_complete() exit, the loop is no more running, so there is no need to stop the loop in case of an error". The grammar should be improved to something like "...the loop is no longer running", or "...the loop has stopped running" The current documentation can be found here: https://docs.python.org/3/library/asyncio-protocol.html#echo-client
msg223728 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2014-07-23 08:29
Fixed in d19c58e13ac9 Thanks
msg223729 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014-07-23 08:50
Thanks for the patch Aaron. I wrote the documentation and I'm not a native english speaker. Please don't hesitate to report other grammar issues like that. You may group all of them in a single issue.
History
Date User Action Args
2022-04-11 14:58:06 admin set github: 66236
2014-07-23 08:50:26 vstinner set nosy: + vstinnermessages: +
2014-07-23 08:29:25 asvetlov set status: open -> closedversions: + Python 3.4, Python 3.5nosy: + asvetlovmessages: + resolution: fixedstage: resolved
2014-07-22 16:51:51 Aaron1011 create