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, delhallt, haubi, python-dev, serhiy.storchaka, vstinner
Date 2013-12-13.11:04:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386932658.87.0.00226540158814.issue17919@psf.upfronthosting.co.za>
In-reply-to
Content
With  poll_events_mask_overflow.patch, the following hack can maybe be removed?

            /* The &0xffff is a workaround for AIX.  'revents'
               is a 16-bit short, and IBM assigned POLLNVAL
               to be 0x8000, so the conversion to int results
               in a negative number. See SF bug #923315. */
            num = PyLong_FromLong(self->ufds[i].revents & 0xffff);
History
Date User Action Args
2013-12-13 11:04:18vstinnersetrecipients: + vstinner, haubi, python-dev, serhiy.storchaka, David.Edelsohn, delhallt
2013-12-13 11:04:18vstinnersetmessageid: <1386932658.87.0.00226540158814.issue17919@psf.upfronthosting.co.za>
2013-12-13 11:04:18vstinnerlinkissue17919 messages
2013-12-13 11:04:18vstinnercreate