[pypy-svn] r66381 - pypy/branch/parser-compiler/pypy/interpreter/astcompiler

benjamin at codespeak.net benjamin at codespeak.net
Sat Jul 18 20:46:31 CEST 2009


Author: benjamin
Date: Sat Jul 18 20:46:30 2009
New Revision: 66381

Modified:
   pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py
Log:
- to _

Modified: pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py
==============================================================================
--- pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py	(original)
+++ pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py	Sat Jul 18 20:46:30 2009
@@ -1020,7 +1020,7 @@
             elif stack_count == 1:
                 self.emit_op_arg(ops.DUP_TOPX, 2)
             elif stack_count == 2:
-                self.emit_op-arg(ops.DUP_TOPX, 3)
+                self.emit_op_arg(ops.DUP_TOPX, 3)
         elif ctx == ast.AugStore:
             if stack_count == 0:
                 self.emit_op(ops.ROT_TWO)



More information about the Pypy-commit mailing list