This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients tim.peters, vstinner, zephyrus00jp
Date 2019-09-06.13:55:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567778106.76.0.657139311233.issue38033@roundup.psfhosted.org>
In-reply-to
Content
By default, Python is optimized for performance but its pymalloc memory allocator causes false alarms in Valgrind.

> https://github.com/python/cpython/blob/master/Misc/README.valgrind

This or you can disable pymalloc at runtime using:

PYTHONMALLOC=malloc python3 ...

or:

PYTHONMALLOC=malloc_debug python3 ...

See:
https://docs.python.org/dev/c-api/memory.html
and
https://docs.python.org/dev/using/cmdline.html#envvar-PYTHONMALLOC
History
Date User Action Args
2019-09-06 13:55:06vstinnersetrecipients: + vstinner, tim.peters, zephyrus00jp
2019-09-06 13:55:06vstinnersetmessageid: <1567778106.76.0.657139311233.issue38033@roundup.psfhosted.org>
2019-09-06 13:55:06vstinnerlinkissue38033 messages
2019-09-06 13:55:06vstinnercreate