[issue37776] Test Py_Finalize() from a subinterpreter

2020-03-09 Thread STINNER Victor
STINNER Victor added the comment: See also bpo-38865. -- nosy: +vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue37776] Test Py_Finalize() from a subinterpreter

2019-12-13 Thread Eric Snow
Eric Snow added the comment: On Fri, Dec 13, 2019 at 11:22 AM Lewis Gaul wrote: > So it looks like adding a specific testcase for this is likely to weed out an > actual issue here! +1 -- ___ Python tracker

[issue37776] Test Py_Finalize() from a subinterpreter

2019-12-13 Thread Lewis Gaul
Lewis Gaul added the comment: It seems that test_audit_subinterpreter() in _testembed.c was (unintentionally?) doing this already. After fixing #36225 I found this testcase causes a segfault, but works fine when switching back to the main threadstate before calling Py_Finalize(). So it

[issue37776] Test Py_Finalize() from a subinterpreter

2019-08-06 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- components: +Tests stage: -> needs patch versions: +Python 3.9 ___ Python tracker ___ ___

[issue37776] Test Py_Finalize() from a subinterpreter

2019-08-06 Thread Joannah Nanjekye
New submission from Joannah Nanjekye : Am opening a test request from @ncoghlan from the discussing on issue 36225. There is a need to add a test that exercises what happens when Py_Finalize() is called from a sub-interpreter rather than the main interpreter. -- messages: 349123