[pypy-commit] pypy default: Revert, doesn't actually work

alex_gaynor noreply at buildbot.pypy.org
Mon Nov 4 08:01:15 CET 2013


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r67825:0d4f1f63b8a0
Date: 2013-11-03 23:00 -0800
http://bitbucket.org/pypy/pypy/changeset/0d4f1f63b8a0/

Log:	Revert, doesn't actually work

diff --git a/pypy/objspace/fake/objspace.py b/pypy/objspace/fake/objspace.py
--- a/pypy/objspace/fake/objspace.py
+++ b/pypy/objspace/fake/objspace.py
@@ -176,7 +176,7 @@
                 self._see_interp2app(x)
             if isinstance(x, GetSetProperty):
                 self._see_getsetproperty(x)
-        if isinstance(x, (r_singlefloat, complex)):
+        if isinstance(x, r_singlefloat):
             self._wrap_not_rpython(x)
         if isinstance(x, list):
             if x == []: # special case: it is used e.g. in sys/__init__.py


More information about the pypy-commit mailing list