[issue23815] Segmentation fault when create _tkinter objects

Serhiy Storchaka report at bugs.python.org
Sun Nov 15 03:28:13 EST 2015


Serhiy Storchaka added the comment:

Before issue15721 the tp_new was NULL, and this prevented from creating instances. After issue15721 the tp_new is inherited from object. An instance is created, but all internal pointers are NULLs. Following repr() dereferences NULL.

----------
versions: +Python 3.6

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


More information about the Python-bugs-list mailing list