aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/tracemalloc.c
Commit message (Collapse)AuthorAge
* gh-121390: tracemalloc: Fix tracebacks memory leak (#121391)Josh Brobst2024-07-05
| | | | | | The tracemalloc_tracebacks hash table has traceback keys and NULL values, but its destructors do not reflect this -- key_destroy_func is NULL while value_destroy_func is raw_free. Swap these to free the traceback keys instead.
* gh-111389: Add PyHASH_MULTIPLIER constant (#119214)Victor Stinner2024-05-21
|
* gh-93502: Add new C-API functions to trace object creation and destruction ↵Pablo Galindo Salgado2024-05-02
| | | | (#115945)
* gh-108765: Cleanup #include in Python/*.c files (#108977)Victor Stinner2023-09-06
| | | Mention one symbol imported by each #include.
* Ignore _Py_write_noraise() result: cast to (void) (#108291)Victor Stinner2023-08-22
| | | | Code using _Py_write_noraise() usually cannot report. Ignore errors is the least surprising behavior for users.
* GH-100987: Allow objects other than code objects as the "executable" of an ↵Mark Shannon2023-06-14
| | | | | | | | | | internal frame. (GH-105727) * Add table describing possible executable classes for out-of-process debuggers. * Remove shim code object creation code as it is no longer needed. * Make lltrace a bit more robust w.r.t. non-standard frames.
* GH-101520: Move tracemalloc functionality into core, leaving interface in ↵Mark Shannon2023-05-17
Modules. (#104508)