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 neologix, vstinner
Date 2011-06-23.23:06:06
SpamBayes Score 3.2306158e-11
Marked as misclassified No
Message-id <1308870367.06.0.0171125793706.issue12392@psf.upfronthosting.co.za>
In-reply-to
Content
FreeBSD 7 is not affected by this issue.

To test this issue, call signal.pthread_kill(threading.get_ident(), signal.SIGINT) in an interpreter: it should raise a KeyboardInterrupt. On FreeBSD6, it does nothing. Or run ./python -m test -v test_signal: test_pendings hangs because the test reads 3 bytes from a pipe whereas the pipe is empty. The write end is non blocking, but the read end is blocking.

It would be possible to fix the test to fail instead of blocking: set the read end as non blocking (setUp() does always set the write end as non blocking).
History
Date User Action Args
2011-06-23 23:06:07vstinnersetrecipients: + vstinner, neologix
2011-06-23 23:06:07vstinnersetmessageid: <1308870367.06.0.0171125793706.issue12392@psf.upfronthosting.co.za>
2011-06-23 23:06:06vstinnerlinkissue12392 messages
2011-06-23 23:06:06vstinnercreate