[issue1225584] crash in gcmodule.c on python reinitialization

2014-12-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am closing since the initial problem has been fixed and there is no known current problem to fix. If someone does discover one, they can reopen or, probably better, open a new issue. -- resolution: - fixed stage: test needed - resolved status:

[issue1225584] crash in gcmodule.c on python reinitialization

2014-03-23 Thread Nick Coghlan
Nick Coghlan added the comment: I don't actually know the internal details of the GC - adding Antoine based on the list of interested devs for the gc module. -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org

[issue1225584] crash in gcmodule.c on python reinitialization

2014-03-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: Someone interested in this issue should first check whether it still applies to 3.4 or 3.5. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1225584 ___

[issue1225584] crash in gcmodule.c on python reinitialization

2014-03-22 Thread Mark Lawrence
Mark Lawrence added the comment: I find it surprising that something flagged up as causing a crash hasn't had a little more TLC, but is this still a genuine problem? -- components: +Windows nosy: +BreamoreBoy, terry.reedy ___ Python tracker

[issue1225584] crash in gcmodule.c on python reinitialization

2014-03-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: The initial test case was apparently fixed. It is not clear to me that the second, msg57834, is a supported use case. Nick, I know you are busy, but there is no C api category in the experts list. Any comment? Unless someone can identify a bug in current 2.7

[issue1225584] crash in gcmodule.c on python reinitialization

2014-03-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: Nick, please read my previous msg if you can find a moment. -- nosy: +ncoghlan ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1225584 ___

[issue1225584] crash in gcmodule.c on python reinitialization

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- versions: +Python 2.5, Python 2.6 _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1225584 _ ___ Python-bugs-list mailing list

[issue1225584] crash in gcmodule.c on python reinitialization

2007-12-15 Thread Adam Olsen
Adam Olsen added the comment: mwh, my threading patch is extensive enough and has enough overlap that I'm not intimidating by fixing this. It's low on my list of priorities though. So far my tendency is to rip out multiple interpreters, as I haven't seen what it wants to accomplish. It's

[issue1225584] crash in gcmodule.c on python reinitialization

2007-11-26 Thread Adam Olsen
Changes by Adam Olsen: -- nosy: +rhamphoryncus _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1225584 _ ___ Python-bugs-list mailing list Unsubscribe:

[issue1225584] crash in gcmodule.c on python reinitialization

2007-11-25 Thread ita
ita added the comment: The following still crashes (python 2.5.1): for (int i=0; i1000; ++i) { Py_Initialize(); PyRun_SimpleString(import tarfile\n); Py_Finalize(); } Bindings such as Swig are adding weird hacks just for