Re: Memory Profiler

2006-01-11 Thread Stephen Kellett
In message <[EMAIL PROTECTED]>, Dave <[EMAIL PROTECTED]> writes >Is there any memory profiler for Python programs? I Python Memory Validator http://www.softwareverify.com/pythonMemoryValidator/index.html Stephen -- Stephen Kellett Object Media Limitedhttp://www.objme

Re: Memory Profiler

2006-01-11 Thread Grig Gheorghiu
See http://pycheesecake.org/wiki/PythonTestingToolsTaxonomy#MiscellaneousPythonTestingTools In particular, PySizer and HeapPy might be what you're looking for. I can't say for sure, since I haven't used these tools myself. Grig -- http://mail.python.org/mailman/listinfo/python-list

Memory Profiler

2006-01-11 Thread Dave
Hi, Is there any memory profiler for Python programs? I would like to see how much memory objects take up, cache misses, etc. I tried to patch PySizer, but got a build error (Error 138). Thanks! __ Do You Yahoo!? Tired of spam? Yahoo! Mail has

Re: memory profiler?

2005-04-23 Thread John Reese
On Wed, 20 Apr 2005 23:06:51 -0400, Peter Hansen <[EMAIL PROTECTED]> wrote: > John Reese wrote: >> Is there a memory or heap profiler for python programs? So that, for >> example, if a program was bloating over time I could see how many of >> each object there were and maybe even where the referen

Re: memory profiler?

2005-04-21 Thread Diez B. Roggisch
Peter Hansen wrote: > John Reese wrote: >> Is there a memory or heap profiler for python programs? So that, for >> example, if a program was bloating over time I could see how many of >> each object there were and maybe even where the references were? > > The "gc" module has a variety of helpful

Re: memory profiler?

2005-04-20 Thread Peter Hansen
John Reese wrote: Is there a memory or heap profiler for python programs? So that, for example, if a program was bloating over time I could see how many of each object there were and maybe even where the references were? The "gc" module has a variety of helpful features like that. -Peter -- http:/

memory profiler?

2005-04-20 Thread John Reese
Good afternoon, ha ha ha! Is there a memory or heap profiler for python programs? So that, for example, if a program was bloating over time I could see how many of each object there were and maybe even where the references were? -- http://mail.python.org/mailman/listinfo/python-list