[issue6674] Fatal error: deallocating None

2009-08-10 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue6674] Fatal error: deallocating None

2009-08-10 Thread Skip Montanaro
Skip Montanaro added the comment: Is your mh_python module written in C/C++ or Python? If it's written in C or C++ check your Py_DECREF calls. You are probably doubly decrementing some object which at times refers to Py_None. Do that enough and you eventually try to deallocate it. In fact, i

[issue6674] Fatal error: deallocating None

2009-08-10 Thread Shashi Gowda
New submission from Shashi Gowda : I'm using the megahal mh_python module to make a bot instance learn from a several 100 files. The code works as it should for 4-6 files before crashing with this error message "Fatal error: deallocating None" There isn't much documentation on this anywhere. ---