This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jcolo
Recipients asvetlov, jcolo, yselivanov
Date 2021-04-06.08:07:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1617696453.27.0.575129983051.issue43742@roundup.psfhosted.org>
In-reply-to
Content
taking the example verbatim into an ubuntu 20.04 with
 Python 3.8.5 (default, Jan 27 2021, 15:41:15)
[GCC 9.3.0] on linux

will hand indefinitely at 
data = await reader.read(100)

changing for 
data = await asyncio.wait_for(reader.read(100),5)

will always leave on timeout.
History
Date User Action Args
2021-04-06 08:07:33jcolosetrecipients: + jcolo, asvetlov, yselivanov
2021-04-06 08:07:33jcolosetmessageid: <1617696453.27.0.575129983051.issue43742@roundup.psfhosted.org>
2021-04-06 08:07:33jcololinkissue43742 messages
2021-04-06 08:07:33jcolocreate