index
:
cpython
3.10
3.11
3.12
3.13
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_sys_settrace.py
Commit message (
Expand
)
Author
Age
*
gh-130080: fix warnings in tests (#131400)
Irit Katriel
2025-03-18
*
GH-130396: Use computed stack limits on linux (GH-130398)
Mark Shannon
2025-02-25
*
GH-91079: Revert "GH-91079: Implement C stack limits using addresses, not cou...
Petr Viktorin
2025-02-24
*
GH-91079: Implement C stack limits using addresses, not counters. (GH-130007)
Mark Shannon
2025-02-19
*
gh-128404: Remove `asyncio` from `Lib/test/test_sys_settrace` (#128435)
Thomas Grainger
2025-01-03
*
gh-127949: deprecate `asyncio.set_event_loop_policy` (#128024)
Kumar Aditya
2024-12-18
*
GH-121131: Clean up and fix some instrumented instructions. (GH-121132)
Mark Shannon
2024-07-26
*
gh-93691: fix too broad source locations of for statement iterators (#120330)
Irit Katriel
2024-06-12
*
gh-116303: Skip tests if C recursion limit is unavailable (GH-117368)
Erlend E. Aasland
2024-04-08
*
gh-114099: Add test exclusions to support running the test suite on iOS (#114...
Russell Keith-Magee
2024-02-05
*
GH-113655: Lower the C recursion limit on various platforms (GH-113944)
Mark Shannon
2024-01-16
*
gh-111798: Use lower Py_C_RECURSION_LIMIT in debug mode (#112124)
Victor Stinner
2023-11-16
*
gh-103615: Use local events for opcode tracing (GH-109472)
Tian Gao
2023-11-03
*
GH-94438: Fix RuntimeWarning for jump tests in test_sys_settrace (GH-111341)
Tian Gao
2023-10-26
*
GH-94438: Restore ability to jump over None tests (GH-111237)
Savannah Ostrowski
2023-10-23
*
gh-105658: fix excess trace events for except block ending with a conditional...
Irit Katriel
2023-09-14
*
gh-109094: remove unnecessary updates of frame->prev_instr in instrumentation...
Irit Katriel
2023-09-07
*
gh-103186: Suppress RuntimeWarning about unclosed async iterator in test_sys_...
Serhiy Storchaka
2023-09-07
*
gh-103186: Remove debug print in test_sys_settrace (GH-109077)
Serhiy Storchaka
2023-09-07
*
gh-103186: Suppress and assert expected RuntimeWarnings in test_sys_settrace ...
Ijtaba Hussain
2023-09-07
*
gh-108416: Mark slow test methods with @requires_resource('cpu') (GH-108421)
Serhiy Storchaka
2023-09-02
*
GH-91095: Specialize calls to normal Python classes. (GH-99331)
Mark Shannon
2023-06-22
*
gh-104686: Fix tracing for decorated classes (#104708)
Jelle Zijlstra
2023-05-21
*
GH-102818: Do not call `PyTraceBack_Here` in sys.settrace trampoline. (GH-10...
Mark Shannon
2023-05-19
*
GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...
Mark Shannon
2023-05-12
*
GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...
Mark Shannon
2023-04-12
*
gh-102515: Remove unused imports in the `Lib/` directory (#102516)
Alex Waygood
2023-03-08
*
GH-96793: Implement PEP 479 in bytecode. (GH-99006)
Mark Shannon
2022-11-03
*
gh-98257: Make _PyEval_SetTrace() reentrant (#98258)
Victor Stinner
2022-10-20
*
gh-92886: Fixing tests that fail when running with optimizations (`-O`) in `t...
Jack Hindmarch
2022-10-18
*
GH-96864: Check for error between line and opcode events (GH-96880)
Brandt Bucher
2022-09-19
*
GH-94438: Handle extended arguments and conditional pops in mark_stacks (GH-9...
Brandt Bucher
2022-07-22
*
GH-94739: Mark stacks of exception handling blocks for setting frame.f_lineno...
Mark Shannon
2022-07-18
*
gh-94814: Improve coverage of _PyCode_CreateLineArray (GH-94852)
Michael Droettboom
2022-07-15
*
gh-92228: disable the compiler's 'small exit block inlining' optimization for...
Irit Katriel
2022-07-06
*
gh-94510: Raise on re-entrant calls to sys.setprofile and sys.settrace (GH-94...
Pablo Galindo Salgado
2022-07-05
*
GH-94438: Account for NULLs on evaluation stack when jumping lines. (GH-94444)
Mark Shannon
2022-07-01
*
gh-93061: Mark as artificial: backwards jump after async for (GH-93062)
Dennis Sweeney
2022-05-23
*
GH-92236: Remove spurious "line" event when starting coroutine or generator. ...
Mark Shannon
2022-05-13
*
gh-92311: Add tests for frame_setlineno jumping over listcomps (#92741)
Dennis Sweeney
2022-05-12
*
gh-91869: Fix tracing of specialized instructions with extended args (GH-91945)
Dennis Sweeney
2022-04-27
*
bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)
Christian Heimes
2022-03-22
*
bpo-46458: emit code for else of a try block immediately after the try body (...
Irit Katriel
2022-01-27
*
bpo-46344: Fix trace bug in else of try and try-star blocks (GH-30544)
Irit Katriel
2022-01-13
*
bpo-46331: Do not set line number of instruction storing doc-string. (GH-30518)
Mark Shannon
2022-01-11
*
bpo-46314: Remove extra RESUME when compiling a lamdba. (GH-30513)
Mark Shannon
2022-01-10
*
bpo-45292: [PEP-654] add except* (GH-29581)
Irit Katriel
2021-12-14
*
bpo-45890: Add tests for tracing try-except-finally blocks (GH-29746)
Irit Katriel
2021-12-07
*
bpo-45709: Fix tracing when exception is handled. (GH-29638)
Mark Shannon
2021-11-19
*
bpo-44840: Compiler: Move duplication of exit blocks with no line numbers to ...
Mark Shannon
2021-08-09
[next]