We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
if the server handler is something like
async def handler(request): return web.Response(text='ok')
then session.post('…', data=b'0') will crash (trying to write to a closed transport)
session.post('…', data=b'0')
I'll submit a pull request for this next week (i have a memory leak i need to track down first)