[New-bugs-announce] [issue16230] select.select crashes on resized lists

Serhiy Storchaka report at bugs.python.org
Sun Oct 14 12:37:16 CEST 2012


New submission from Serhiy Storchaka:

Simple crash code:

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

a[:] = [F()] * 10
select.select([], a, [])

----------
components: Extension Modules
messages: 172871
nosy: serhiy.storchaka
priority: normal
severity: normal
status: open
title: select.select crashes on resized lists
type: crash
versions: Python 2.7, Python 3.2, Python 3.3, Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue16230>
_______________________________________


More information about the New-bugs-announce mailing list