STINNER Victor added the comment:

The output of sys._debugmallocstats() contains different info:

* Stats of type free lists
* pymalloc stats
* number of calls to memory allocators

The available info depends on:

* pymalloc disabled at compilation with ./configure --without-pymalloc
* pymalloc disabled at runtime with PYTHONMALLOC=malloc or 
PYTHONMALLOC=malloc_debug
* debug hooks adds the "times object malloc called" counter: by default if 
Python is compiled with ./configure --with-pydebug, or enabled at runtime using 
PYTHONMALLOC=pymalloc_debug or PYTHONMALLOC=malloc_debug

----------

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

Reply via email to