[issue24853] Py_Finalize doesn't clean up PyImport_Inittab

2016-08-17 Thread STINNER Victor
STINNER Victor added the comment: The issue was fixed by a previous change, maybe the issue #27736. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue24853] Py_Finalize doesn't clean up PyImport_Inittab

2016-08-17 Thread Xiang Zhang
Xiang Zhang added the comment: > initialize/run script/finalize will crash the second time I don't think so since we already get a test case in test_capi that does init/fini repeatedly. It does not crash. So I agree to close this one. -- ___ Python

[issue24853] Py_Finalize doesn't clean up PyImport_Inittab

2016-08-17 Thread STINNER Victor
STINNER Victor added the comment: > This means initialize/run script/finalize will crash the second time, since > the inittab can have stale entries. Sorry, I don't understand. inittab: do you mean _PyImport_Inittab defined in Modules/config.c or PC/config.c? This table is constant, no? Are y

[issue24853] Py_Finalize doesn't clean up PyImport_Inittab

2016-08-16 Thread Xiang Zhang
Changes by Xiang Zhang : -- nosy: +xiang.zhang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue24853] Py_Finalize doesn't clean up PyImport_Inittab

2016-08-11 Thread Simon McVittie
Simon McVittie added the comment: http://bugs.python.org/issue27736 might be related, or even a duplicate of this. -- nosy: +smcv ___ Python tracker ___ _

[issue24853] Py_Finalize doesn't clean up PyImport_Inittab

2015-08-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue24853] Py_Finalize doesn't clean up PyImport_Inittab

2015-08-12 Thread Alex Budovski
New submission from Alex Budovski: This means initialize/run script/finalize will crash the second time, since the inittab can have stale entries. -- messages: 248495 nosy: Alex Budovski priority: normal severity: normal status: open title: Py_Finalize doesn't clean up PyImport_Inittab