[pypy-commit] pypy default: Comment out this hack. I guess it was used for "checkmodule",

arigo noreply at buildbot.pypy.org
Thu Dec 8 10:23:50 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r50292:104e7a656174
Date: 2011-12-08 10:23 +0100
http://bitbucket.org/pypy/pypy/changeset/104e7a656174/

Log:	Comment out this hack. I guess it was used for "checkmodule", which
	likely doesn't work any more with the clr module.

diff --git a/pypy/module/clr/boxing_rules.py b/pypy/module/clr/boxing_rules.py
--- a/pypy/module/clr/boxing_rules.py
+++ b/pypy/module/clr/boxing_rules.py
@@ -43,11 +43,11 @@
     def tocli(self):
         return box(self._value)
 
-from pypy.objspace.fake.objspace import W_Object as W_Object_Fake
-from pypy.rlib.nonconst import NonConstant
+##from pypy.objspace.fake.objspace import W_Object as W_Object_Fake
+##from pypy.rlib.nonconst import NonConstant
 
-class __extend__(W_Object_Fake):
-    __metaclass__ = extendabletype
+##class __extend__(W_Object_Fake):
+##    __metaclass__ = extendabletype
 
-    def tocli(self):
-        return NonConstant(None)
+##    def tocli(self):
+##        return NonConstant(None)


More information about the pypy-commit mailing list