Commit 82c72310 authored by Neal Norwitz's avatar Neal Norwitz

SF # 627900, Bytecode copy bug in freeze

Pass co_freevars and co_cellvars to new.code().
Will backport.
parent 80a1bf4b
......@@ -433,7 +433,8 @@ class ModuleFinder:
return new.code(co.co_argcount, co.co_nlocals, co.co_stacksize,
co.co_flags, co.co_code, tuple(consts), co.co_names,
co.co_varnames, new_filename, co.co_name,
co.co_firstlineno, co.co_lnotab)
co.co_firstlineno, co.co_lnotab,
co.co_freevars, co.co_cellvars)
def test():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment