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 serhiy.storchaka
Recipients serhiy.storchaka
Date 2012-10-14.10:37:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350211036.55.0.523850963705.issue16230@psf.upfronthosting.co.za>
In-reply-to
Content
Simple crash code:

import select
a = []
class F:
    def fileno(self):
        del a[-1]
        return 1

a[:] = [F()] * 10
select.select([], a, [])
History
Date User Action Args
2012-10-14 10:37:16serhiy.storchakasetrecipients: + serhiy.storchaka
2012-10-14 10:37:16serhiy.storchakasetmessageid: <1350211036.55.0.523850963705.issue16230@psf.upfronthosting.co.za>
2012-10-14 10:37:16serhiy.storchakalinkissue16230 messages
2012-10-14 10:37:16serhiy.storchakacreate