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 neologix
Recipients David.Edelsohn, gvanrossum, neologix, pitrou, python-dev, skrah
Date 2013-10-19.22:09:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAH_1eM0u9T_8COKMbMZNFJ2Be7wyEKO7UuxLMtmaO=767NuS1g@mail.gmail.com>
In-reply-to <1382214954.52.0.167512502911.issue19293@psf.upfronthosting.co.za>
Content
> The patch cleans up a lot of the other failures for asyncio on AIX

Great.

> but does not fix the hang.

I was expecting this :-)

Note that the hang is really strange, especially since the first
run_until_complete() succeeds.

Without more information, it'll be really hard to debug.

If you don't have an strace equivalent, then the only option is to add
ad-hoc debug statements to see:
- if the data gets written to the pipe
- if data is read from the pipe

There's something strange in the stack you posted above: there seems
to be a single FD in the poll() set, whereas there should be at least
3 (stdin, stdout and stderr).
History
Date User Action Args
2013-10-19 22:09:28neologixsetrecipients: + neologix, gvanrossum, pitrou, skrah, python-dev, David.Edelsohn
2013-10-19 22:09:28neologixlinkissue19293 messages
2013-10-19 22:09:28neologixcreate