diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2021-12-07 10:50:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 10:50:37 (GMT) |
commit | a310fd83a014484b8c680de83540c4908b344c6c (patch) | |
tree | 2b897438d7916ab969bb8ee48a55af414354fef0 /Lib/test/test_trace.py | |
parent | 8db06528cacc94e67eb1fb2e4c2acc061a515671 (diff) | |
download | cpython-a310fd83a014484b8c680de83540c4908b344c6c.zip cpython-a310fd83a014484b8c680de83540c4908b344c6c.tar.gz cpython-a310fd83a014484b8c680de83540c4908b344c6c.tar.bz2 |
bpo-45890: Add tests for tracing try-except-finally blocks (GH-29746)
Diffstat (limited to 'Lib/test/test_trace.py')
-rw-r--r-- | Lib/test/test_trace.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py index dbfefca..d63c177 100644 --- a/Lib/test/test_trace.py +++ b/Lib/test/test_trace.py @@ -11,6 +11,11 @@ from trace import Trace from test.tracedmodules import testmod +## +## See also test_sys_settrace.py, which contains tests that cover +## tracing of many more code blocks. +## + #------------------------------- Utilities -----------------------------------# def fix_ext_py(filename): |