summaryrefslogtreecommitdiffstats
path: root/Python/legacy_tracing.c
Commit message (Expand)AuthorAgeFilesLines
* gh-107674: Lazy load line number to improve performance of tracing (GH-118127)Tian Gao2024-04-291-0/+1
* gh-117385: Remove unhooked events on sys.settrace (GH-117386)Tian Gao2024-04-261-3/+2
* gh-116818: Make `sys.settrace`, `sys.setprofile`, and monitoring thread-safe ...Dino Viehland2024-04-191-30/+64
* gh-103615: Use local events for opcode tracing (GH-109472)Tian Gao2023-11-031-4/+48
* gh-110892: Return NULL for `PyTrace_RETURN` events caused by an exception (GH...Tian Gao2023-11-021-11/+31
* gh-110514: Add PY_THROW to `sys.setprofile` events (GH-110524)Tian Gao2023-10-091-1/+7
* gh-108765: Cleanup #include in Python/*.c files (#108977)Victor Stinner2023-09-061-4/+5
* gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459)Victor Stinner2023-08-241-3/+3
* GH-107724: Fix the signature of `PY_THROW` callback functions. (GH-107725)Mark Shannon2023-08-091-3/+3
* GH-106898: Add the exception as an argument to the `PY_UNWIND` event callback...Mark Shannon2023-07-271-2/+22
* GH-100987: Allow objects other than code objects as the "executable" of an in...Mark Shannon2023-06-141-2/+1
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-121-54/+19
* gh-84436: Implement Immortal Objects (gh-19474)Eddie Elizondo2023-04-221-1/+1
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-121-0/+528