diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2025-01-16 15:22:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-16 15:22:13 (GMT) |
commit | 3893a92d956363fa2443bc5e47d4bae3deddacef (patch) | |
tree | e87b4c94dfa6cc47ba4610d93db82dd15791a2fa /Lib/test/test_monitoring.py | |
parent | e81fe940c9bd092f6de558fa965100502b78da0f (diff) | |
download | cpython-3893a92d956363fa2443bc5e47d4bae3deddacef.zip cpython-3893a92d956363fa2443bc5e47d4bae3deddacef.tar.gz cpython-3893a92d956363fa2443bc5e47d4bae3deddacef.tar.bz2 |
gh-100239: specialize long tail of binary operations (#128722)
Diffstat (limited to 'Lib/test/test_monitoring.py')
-rw-r--r-- | Lib/test/test_monitoring.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_monitoring.py b/Lib/test/test_monitoring.py index 43e3e56..bea0e48 100644 --- a/Lib/test/test_monitoring.py +++ b/Lib/test/test_monitoring.py @@ -1649,7 +1649,7 @@ class TestBranchAndJumpEvents(CheckEvents): return None in_loop = ('branch left', 'foo', 10, 16) - exit_loop = ('branch right', 'foo', 10, 32) + exit_loop = ('branch right', 'foo', 10, 40) self.check_events(foo, recorders = BRANCH_OFFSET_RECORDERS, expected = [ in_loop, in_loop, |