[pypy-svn] r37529 - pypy/dist/pypy/objspace/fake

antocuni at codespeak.net antocuni at codespeak.net
Mon Jan 29 13:43:08 CET 2007


Author: antocuni
Date: Mon Jan 29 13:43:07 2007
New Revision: 37529

Modified:
   pypy/dist/pypy/objspace/fake/objspace.py
Log:
The default implementation of exec_ is good enough for the fake
objspace.



Modified: pypy/dist/pypy/objspace/fake/objspace.py
==============================================================================
--- pypy/dist/pypy/objspace/fake/objspace.py	(original)
+++ pypy/dist/pypy/objspace/fake/objspace.py	Mon Jan 29 13:43:07 2007
@@ -128,10 +128,6 @@
     def marshal_w(self, *args):raise NotImplementedError("space.marshal_w()")
     def log(self, *args):      raise NotImplementedError("space.log()")
 
-    def exec_(self, statement, w_globals, w_locals, hidden_applevel=False):
-        "NOT_RPYTHON"
-        raise NotImplementedError("space.exec_")
-
     gettypefor     = make_dummy()
     gettypeobject  = make_dummy()
     unpackiterable = make_dummy([W_Object()], [W_Object()])



More information about the Pypy-commit mailing list