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 vstinner
Recipients David.Edelsohn, gvanrossum, vstinner
Date 2013-11-24.17:41:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385314919.08.0.918719713255.issue19750@psf.upfronthosting.co.za>
In-reply-to
Content
Oh, this failure is probably related to this comment in unix_events.py:

        # On AIX, the reader trick only works for sockets.
        # On other platforms it works for pipes and sockets.
        # (Exception: OS X 10.4?  Issue #19294.)
        if is_socket or not sys.platform.startswith("aix"):
            self._loop.add_reader(self._fileno, self._read_ready)

UnixWritePipeTransportTests should use a real socket, or the 2 tests should be skipped on AIX.
History
Date User Action Args
2013-11-24 17:41:59vstinnersetrecipients: + vstinner, gvanrossum, David.Edelsohn
2013-11-24 17:41:59vstinnersetmessageid: <1385314919.08.0.918719713255.issue19750@psf.upfronthosting.co.za>
2013-11-24 17:41:59vstinnerlinkissue19750 messages
2013-11-24 17:41:58vstinnercreate