[pypy-svn] r66334 - pypy/branch/parser-compiler/pypy/interpreter/astcompiler
benjamin at codespeak.net
benjamin at codespeak.net
Fri Jul 17 23:30:02 CEST 2009
Author: benjamin
Date: Fri Jul 17 23:30:01 2009
New Revision: 66334
Modified:
pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py
Log:
fix annotation
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 Fri Jul 17 23:30:01 2009
@@ -818,6 +818,7 @@
if call.kwargs:
call.kwargs.walkabout(self)
call_type |= 2
+ op = 0
if call_type == 0:
op = ops.CALL_FUNCTION
elif call_type == 1:
More information about the Pypy-commit
mailing list