You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python comes with several built-in "memory leaks" (for example, re.compile, from your docs), making it difficult to write code that doesn't get marked by Memray as leaking memory in some way or another.
Describe the solution you'd like
Memray could support adding a suppressions file. This could be in an ini file (since that's in the standard library), or make its own format - similar to how Valgrind does it.
Alternatives you considered
I've considered modifying get_allocations to manually remove some functions from the report.
The text was updated successfully, but these errors were encountered:
Is there an existing proposal for this?
Is your feature request related to a problem?
Python comes with several built-in "memory leaks" (for example,
re.compile
, from your docs), making it difficult to write code that doesn't get marked by Memray as leaking memory in some way or another.Describe the solution you'd like
Memray could support adding a suppressions file. This could be in an
ini
file (since that's in the standard library), or make its own format - similar to how Valgrind does it.Alternatives you considered
I've considered modifying get_allocations to manually remove some functions from the report.
The text was updated successfully, but these errors were encountered: