[issue10892] segfault with "del X.__abstractmethods__"

2011-01-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: r87954 -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue10892] segfault with "del X.__abstractmethods__"

2011-01-12 Thread Éric Araujo
Éric Araujo added the comment: I think a crash does not qualify as security issue, hence removing 2.6. -- nosy: +eric.araujo versions: -Python 2.6 ___ Python tracker ___ __

[issue10892] segfault with "del X.__abstractmethods__"

2011-01-12 Thread Amaury Forgeot d'Arc
New submission from Amaury Forgeot d'Arc : A short crasher:: class X(object): pass del X.__abstractmethods__ All versions since 2.6 are affected. The fix is probably simple: the setter function type_set_abstractmethods() in typeobject.c should check for a NULL value. -- keyword