[pypy-svn] r47502 - pypy/dist/pypy/interpreter

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Oct 16 16:20:45 CEST 2007


Author: cfbolz
Date: Tue Oct 16 16:20:44 2007
New Revision: 47502

Modified:
   pypy/dist/pypy/interpreter/gateway.py
Log:
and another immutable-hint


Modified: pypy/dist/pypy/interpreter/gateway.py
==============================================================================
--- pypy/dist/pypy/interpreter/gateway.py	(original)
+++ pypy/dist/pypy/interpreter/gateway.py	Tue Oct 16 16:20:44 2007
@@ -367,6 +367,7 @@
         
 class BuiltinCode(eval.Code):
     "The code object implementing a built-in (interpreter-level) hook."
+    _immutable_ = True
     hidden_applevel = True
     descrmismatch_op = None
     descr_reqcls = None



More information about the Pypy-commit mailing list