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 pitrou
Recipients neologix, pitrou, vstinner
Date 2015-03-16.16:41:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426524068.73.0.264564987897.issue23680@psf.upfronthosting.co.za>
In-reply-to
Content
Note that PIPE_MAX_SIZE can be large. Perhaps move the memory allocation (i.e. `item * (support.PIPE_MAX_SIZE // len(item) + 1)`) before the alarm(1) call?

Or what if alarm_interrupt is simply set up to retrigger the signal? e.g. instead of:

    def alarm_interrupt(self, sig, frame):
        1/0

write:

    def alarm_interrupt(self, sig, frame):
        signal.alarm(1)
        1/0
History
Date User Action Args
2015-03-16 16:41:08pitrousetrecipients: + pitrou, vstinner, neologix
2015-03-16 16:41:08pitrousetmessageid: <1426524068.73.0.264564987897.issue23680@psf.upfronthosting.co.za>
2015-03-16 16:41:08pitroulinkissue23680 messages
2015-03-16 16:41:08pitroucreate