[pypy-svn] r8294 - pypy/branch/src-typedunwrap/pypy/interpreter

pedronis at codespeak.net pedronis at codespeak.net
Sat Jan 15 13:41:24 CET 2005


Author: pedronis
Date: Sat Jan 15 13:41:23 2005
New Revision: 8294

Modified:
   pypy/branch/src-typedunwrap/pypy/interpreter/gateway.py
Log:
fix to make translate_pypy -no-a on the branch happy again



Modified: pypy/branch/src-typedunwrap/pypy/interpreter/gateway.py
==============================================================================
--- pypy/branch/src-typedunwrap/pypy/interpreter/gateway.py	(original)
+++ pypy/branch/src-typedunwrap/pypy/interpreter/gateway.py	Sat Jan 15 13:41:23 2005
@@ -217,7 +217,7 @@
 class app2interp(Gateway):
     """Build a Gateway that calls 'app' at app-level."""
 
-    NOT_RPYTHON_ATTRIBUTES = ['_staticcode']
+    NOT_RPYTHON_ATTRIBUTES = ['_staticcode'] + Gateway.NOT_RPYTHON_ATTRIBUTES
     
     def __init__(self, app, app_name=None):
         "NOT_RPYTHON"



More information about the Pypy-commit mailing list