We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c63f6 commit 3701667Copy full SHA for 3701667
xdis/bytecode.py
@@ -472,7 +472,7 @@ def get_instructions_bytes(
472
varnames: tuple = code_object.co_varnames
473
cellvars: tuple = code_object.co_cellvars if hasattr(code_object, "co_cellvars") else tuple()
474
exception_entries = code_object.exception_entries if hasattr(code_object, "exception_entries") else tuple()
475
- freevars: tuple = code_object.co_cellvars if hasattr(code_object, "co_freevars") else tuple()
+ freevars: tuple = code_object.co_freevars if hasattr(code_object, "co_freevars") else tuple()
476
477
cells = cellvars + freevars
478
0 commit comments