summaryrefslogtreecommitdiffstats
path: root/Lib/test/support
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/support')
-rw-r--r--Lib/test/support/bytecode_helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support/bytecode_helper.py b/Lib/test/support/bytecode_helper.py
index 357ec44..7b577f5 100644
--- a/Lib/test/support/bytecode_helper.py
+++ b/Lib/test/support/bytecode_helper.py
@@ -124,7 +124,7 @@ class CompilationStepTestCase(unittest.TestCase):
class CodegenTestCase(CompilationStepTestCase):
def generate_code(self, ast):
- insts = compiler_codegen(ast, "my_file.py", 0)
+ insts, _ = compiler_codegen(ast, "my_file.py", 0)
return insts