Explorar el Código

Fix a typo in a bytecode_to_tree comment

jonathanvdc hace 8 años
padre
commit
afdcc42c4c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      kernel/modelverse_jit/bytecode_to_tree.py

+ 1 - 1
kernel/modelverse_jit/bytecode_to_tree.py

@@ -500,7 +500,7 @@ class AnalysisState(object):
         # lines of:
         #
         #     _globals, = yield [("RD", [task_root, "globals"])]
-        #     global_var = yield [("RD", [_globals, var_name])]
+        #     global_var, = yield [("RD", [_globals, var_name])]
         #
         #     if global_var is None:
         #         global_var, = yield [("CN", [])]