[pypy-commit] pypy default: hm, space.unwrap is really not RPython.

cfbolz noreply at buildbot.pypy.org
Tue May 24 11:53:22 CEST 2011


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: 
Changeset: r44399:0cca9b9e1fa8
Date: 2011-05-24 12:03 +0200
http://bitbucket.org/pypy/pypy/changeset/0cca9b9e1fa8/

Log:	hm, space.unwrap is really not RPython.

diff --git a/pypy/objspace/std/objspace.py b/pypy/objspace/std/objspace.py
--- a/pypy/objspace/std/objspace.py
+++ b/pypy/objspace/std/objspace.py
@@ -266,6 +266,7 @@
         return None
 
     def unwrap(self, w_obj):
+        """NOT_RPYTHON"""
         if isinstance(w_obj, Wrappable):
             return w_obj
         if isinstance(w_obj, model.W_Object):


More information about the pypy-commit mailing list