[issue19817] tracemalloc add a memory limit feature

2015-10-02 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue19817] tracemalloc add a memory limit feature

2015-04-06 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue19817] tracemalloc add a memory limit feature

2013-12-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 45442f2a2494 by Victor Stinner in branch 'default': Issue #19817: Fix print_exception(), clear the exception on error http://hg.python.org/cpython/rev/45442f2a2494 -- nosy: +python-dev ___ Python tracker

[issue19817] tracemalloc add a memory limit feature

2013-12-03 Thread STINNER Victor
STINNER Victor added the comment: test_limit.patch: Patch to test the memory_limit on the Python test suite. tracemalloc_memory_limit-2.patch and unittest_leak.patch (of issue #19880) are required to test it. -- Added file: http://bugs.python.org/file32959/test_limit.patch ___

[issue19817] tracemalloc add a memory limit feature

2013-12-03 Thread STINNER Victor
STINNER Victor added the comment: Updated patch. -- Added file: http://bugs.python.org/file32958/tracemalloc_memory_limit-2.patch ___ Python tracker ___ _

[issue19817] tracemalloc add a memory limit feature

2013-12-03 Thread STINNER Victor
STINNER Victor added the comment: This feature cannot be used without a reliable PyErr_NoMemory(): I add issue #19835 as a dependency. -- dependencies: +Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted ___ Python tra

[issue19817] tracemalloc add a memory limit feature

2013-11-27 Thread STINNER Victor
New submission from STINNER Victor: It would be nice to add a memory_limit feature to the tracemalloc to make memory allocation fails if it would make the traced memory greater than the limit. See also the pyfailmalloc project which is similar but different: https://bitbucket.org/haypo/pyfailm