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 exarkun, neologix, r.david.murray, spiv
Date 2010-04-15.13:36:30
SpamBayes Score 1.1606184e-06
Marked as misclassified No
Message-id <1271338592.76.0.0631709010968.issue8354@psf.upfronthosting.co.za>
In-reply-to
Content
> Will the modified test fail on platforms that don't define HAVE_SIGACTION?

Well, in theory, if the system has siginterrupt but not sigaction, it will fail. But as said, I don't think it's possible, see man siginterrupt:
"      This library routine uses an extension of the sigaction(2) system call
     that is not available in 4.2BSD, hence it should not be used if backward
     compatibility is needed."

and the test right now has this at the beginning:
if sys.platform[:3] in ('win', 'os2') or sys.platform == 'riscos':
    raise unittest.SkipTest("Can't test signal on %s" % \
                                   sys.platform)

So it pretty much assumes that any Unix system has siginterrupt, hence sigaction, so it should be safe.
So I'd say in theory, it will, but I don't think that siginterrupt can be available without sigaction anyway.
So feel free to modify the test, or not ;-)
History
Date User Action Args
2010-04-15 13:36:33neologixsetrecipients: + neologix, spiv, exarkun, r.david.murray
2010-04-15 13:36:32neologixsetmessageid: <1271338592.76.0.0631709010968.issue8354@psf.upfronthosting.co.za>
2010-04-15 13:36:31neologixlinkissue8354 messages
2010-04-15 13:36:31neologixcreate