| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #23731: Fix tracemalloc test on Windows. | Zachary Ware | 2015-05-13 | 1 | -2/+3 | 
| | | | | | 'a.pyo' can no longer match 'a.py', so 'a.PYO' can't either. | ||||
| * | Issue #9517: Move script_helper to the support package. | Berker Peksag | 2015-05-06 | 1 | -3/+4 | 
| | | | | | Patch by Christie Wilson. | ||||
| * | Issue #23731: Implement PEP 488. | Brett Cannon | 2015-04-13 | 1 | -5/+1 | 
| | | | | | | | The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied. | ||||
| * | Skip some tests that require a subinterpreter launched with -E or -I when the | Gregory P. Smith | 2015-02-04 | 1 | -1/+3 | 
| |\ | | | | | | | | | | | | | | | interpreter under test is being run in an environment that requires the use of environment variables such as PYTHONHOME in order to function at all. Adds a test.script_helper.interpreter_requires_environment() function to be used with @unittest.skipIf on stdlib test methods requiring this. | ||||
| | * | Skip some tests that require a subinterpreter launched with -E or -I when the | Gregory P. Smith | 2015-02-04 | 1 | -1/+3 | 
| |/ | | | | | | | | interpreter under test is being run in an environment that requires the use of environment variables such as PYTHONHOME in order to function at all. Adds a private test.script_helper._interpreter_requires_environment() function to be used with @unittest.skipIf on stdlib test methods requiring this. | ||||
| * | Break up TestCommandLine.test_env_var into four distinct tests. | Gregory P. Smith | 2015-01-22 | 1 | -3/+5 | 
| | | |||||
| * | Issue #21639: Add a test to check that PyMem_Malloc(0) with tracemalloc enabled | Victor Stinner | 2014-06-02 | 1 | -0/+6 | 
| | | | | | does not crash. | ||||
| * | tracemalloc: filter_traces() raises a TypeError if filters is not an iterable | Victor Stinner | 2014-03-10 | 1 | -0/+2 | 
| | | |||||
| * | Issue #20616: Add a format() method to tracemalloc.Traceback. | Victor Stinner | 2014-02-16 | 1 | -0/+20 | 
| | | |||||
| * | tracemalloc: Fix slicing traces and fix slicing a traceback. | Victor Stinner | 2014-02-01 | 1 | -2/+8 | 
| | | |||||
| * | Closes #19786: tracemalloc, remove the arbitrary limit of 100 frames | Victor Stinner | 2013-11-27 | 1 | -6/+6 | 
| | | | | | | | | | The limit is now 178,956,969 on 64 bit (it is greater on 32 bit because structures are smaller). Use int instead of Py_ssize_t to store the number of frames to have smaller traceback_t objects. | ||||
| * | Close #19798: replace "maximum" term with "peak" in get_traced_memory() | Victor Stinner | 2013-11-27 | 1 | -7/+7 | 
| | | | | | documentation. Use also the term "current" for the current size. | ||||
| * | Cleanup test_tracemalloc.py. Patch written by Vajrasky Kok. | Victor Stinner | 2013-11-25 | 1 | -4/+2 | 
| | | |||||
| * | Issue #18874: Remove tracemalloc.set_traceback_limit() | Victor Stinner | 2013-11-23 | 1 | -12/+9 | 
| | | | | | tracemalloc.start() now has an option nframe parameter | ||||
| * | Issue #18874: Implement the PEP 454 (tracemalloc) | Victor Stinner | 2013-11-23 | 1 | -0/+797 | 
