Hacker News new | ask | show | jobs
by wiredfool 1593 days ago
I’ve had success running valgrind on python code with a very small suppression list to cover all of the python interpreter issues (at least for safety, not leaks) and let me focus on the code.
1 comments

Is such a suppression list publicly available somewhere?
https://github.com/python-pillow/docker-images/blob/main/ubu...

This docker image is what we’re using in CI to do memory safety checks against the pillow c extension.

That is indeed very short! Thanks!