[pypy-commit] pypy object-dtype: Add w_object to FakeSpace

rguillebert noreply at buildbot.pypy.org
Thu Jan 15 16:08:47 CET 2015


Author: Romain Guillebert <romain.py at gmail.com>
Branch: object-dtype
Changeset: r75352:d02fe29f5e55
Date: 2015-01-15 16:08 +0100
http://bitbucket.org/pypy/pypy/changeset/d02fe29f5e55/

Log:	Add w_object to FakeSpace

diff --git a/pypy/module/micronumpy/compile.py b/pypy/module/micronumpy/compile.py
--- a/pypy/module/micronumpy/compile.py
+++ b/pypy/module/micronumpy/compile.py
@@ -67,6 +67,7 @@
     w_unicode = W_TypeObject("unicode")
     w_complex = W_TypeObject("complex")
     w_dict = W_TypeObject("dict")
+    w_object = W_TypeObject("object")
 
     def __init__(self):
         """NOT_RPYTHON"""


More information about the pypy-commit mailing list