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 vstinner
Recipients bsteffensmeier, eric.snow, graysky, ndjensen, petr.viktorin, shihai1991, vstinner
Date 2021-12-16.00:35:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1639614936.78.0.942627029205.issue46070@roundup.psfhosted.org>
In-reply-to
Content
I can sometimes reproduce the crash on Windows with Python 3.9. Call stack (most recent to oldest frames):

* PyObject_GC_UnTrack() - crash on _PyGCHead_SET_NEXT(prev, next) because prev is dangling pointer (0x1fe64dd5250), Visual Studio is unable to read memory
* meth_dealloc() -- delete _sre_compile() method object
* (...)
* PyDict_SetItem() -- set "compile" to None
* _PyModule_ClearDict() -- clear the "_sre" module dict
* _PyModule_Clear()
* _PyImport_Clenaup()
* Py_EndInterpreter()
* (...)
* run_in_subinterp()
* (...)
* t_bootstrap()

The crash occurs in meth_dealloc(), when deallocating the _sre_compile() method object stored in _sre module dictionary as the attribute "compile".

The PyGC_Head.prev pointer is a dangling pointer.

On Python 3.9, the "re" module is not imported at startup, but it's imported indirectly by "import importlib.util" via "import typing". On Python 3.10, the re module is no longer imported by "import importlib.util".

The crash is random. Sometimes, I need 3 or 4 tries. Sometimes, it crash using -X dev. Sometimes, it crash immediately. When debugging in Visual Stuido, the crash seems easier to reproduce.

On Python 3.9, the _sre exetnsion uses the old API: PyModule_Create() with PyModuleDef.m_size = -1.

On Python 3.10, the _sre extension has been converted to multiphase init API: PyModuleDef_Init() with PyModuleDef.m_size = sizeof(_sremodulestate). Moreover, "import importlib.util" no longer imports indirectly the "re" module.
History
Date User Action Args
2021-12-16 00:35:36vstinnersetrecipients: + vstinner, petr.viktorin, eric.snow, ndjensen, shihai1991, graysky, bsteffensmeier
2021-12-16 00:35:36vstinnersetmessageid: <1639614936.78.0.942627029205.issue46070@roundup.psfhosted.org>
2021-12-16 00:35:36vstinnerlinkissue46070 messages
2021-12-16 00:35:36vstinnercreate