Author: Carl Friedrich Bolz <[email protected]>
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):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to