Skip to content

Commit

Permalink
Fix co_lines test for Py 3.10 and 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Dec 5, 2023
1 parent e45c1c5 commit f76189f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pudb/test/test_lowlevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ def main():
1,
335
}
if sys.version_info < (3, 12):
if sys.version_info < (3, 10):
# if co_lines is unavailable, we appear to see these
expected.update([
128, # bogus,
255, # bogus,
Expand Down

0 comments on commit f76189f

Please sign in to comment.