Martin Mokrejs added the comment:

Yes, I have rebuilt all python modules but even gdb exited on startup due to 
python ABI change. I am using Gentoo Linux 
(https://bugs.gentoo.org/show_bug.cgi?id=482348) and unless python-updater 
forgot to include some package in the listing of those needed to be recompiled, 
I am sane. And becuase gdb could not even start up I *hope* those no recompiled 
yet would NOT work AT ALL.

Thanks for clarification, I thought that I might reach some internal number 
(the serial number as you say) in python and run out of some internal counters 
on objects. Actually, I hit these issues because I wondered why some of my 
application tests fail. Although all tests crunch a really lot of data they 
merely do the same in the end: draw charts using matplotlib which uses numpy. I 
have huge lists which I recently converted to generators (if possible) and now 
I even use imap(), izip(), ifilter() from itertools. One of the crashed tests 
has 153 levels in gdb stacktrace and few lines from the very top/outer already 
had the izip() objects. But the tests which crashed are not so huge like 
others, maybe take just 1/10 of the size of others, so I wonder why these 
failed.

I think some crashes are related to me deleting explictly a huge list in my 
code even before leaving a function. Or maybe returning such lists between 
child/parent functions?

Could valgring or something else help to find who is overwriting data of 
others? But I don't have experience with using it.

I think this _figure.clear() crash could be manifestation of python deleting a 
wrong object/pointer. Some ugly for loops over lists took ... don't know how 
much but in total even 26GB of RAM was reserved by the process (most of it also 
as residual memory requirement). With itertools() I got down 10x.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18843>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to