8000 GH-98686: Quicken everything by brandtbucher · Pull Request #98687 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-98686: Quicken everything #98687

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Nov 2, 2022
Prev Previous commit
Next Next commit
fixup
  • Loading branch information
brandtbucher committed Oct 15, 2022
commit 9b59294b2361cb26cde3de826d5e160d0169cb95
1 change: 1 addition & 0 deletions Lib/test/test_lltrace.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ def test_lltrace_different_module(self):
self.assertIn('LOAD_CONST', stdout)
self.assertIn('FOR_ITER', stdout)
self.assertIn('this is an example', stdout)

# check that offsets match the output of dis.dis()
instr_map = {i.offset: i for i in dis.get_instructions(example, adaptive=True)}
for line in stdout.splitlines():
Expand Down
0