Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
simplify tests
  • Loading branch information
picnixz committed Aug 20, 2024
commit 2edff6f29552f9c4e6d7c7718c9501048c3771f9
3 changes: 1 addition & 2 deletions Lib/test/test_dis.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,7 @@ def _f(a):
""" % tuple(map('%s:%s-%s:%s'.__mod__, [
tuple('?' if __p is None else __p for __p in __instruction.positions)
for __instruction in dis._get_instructions_bytes(
dis._get_code_array(_f.__code__, True),
co_positions=_f.__code__.co_positions(),
_f.__code__.co_code, co_positions=_f.__code__.co_positions(),
)
]))
Comment thread
picnixz marked this conversation as resolved.
Outdated

Expand Down