On 4/24/2016 6:07 PM, David wrote:
Is this a bug in the asyncio libraries?
Is this a fixed bug, already? I am using Python 3.4.2 as distributed in Ubuntu
Lucid, with built-in asyncio.
The people who patch asyncio do not read this list. Either install a
current release or try the tulip rele
Is this a bug in the asyncio libraries?
This code:
'''
proc = yield from asyncio.create_subprocess_exec(*cmd,
stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env)
# read all data from subprocess pipe, copy to nextCoro
ln = yield from proc.stdout.read(1024)
while ln: