[pypy-commit] pypy py3k: add space.w_memoryview

pjenvey noreply at buildbot.pypy.org
Wed Apr 30 01:12:06 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r71077:c50c8b4ea684
Date: 2014-04-29 16:09 -0700
http://bitbucket.org/pypy/pypy/changeset/c50c8b4ea684/

Log:	add space.w_memoryview

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
@@ -354,7 +354,7 @@
                      ObjSpace.ExceptionTable +
                      ['int', 'str', 'float', 'tuple', 'list',
                       'dict', 'bytes', 'complex', 'slice', 'bool',
-                      'text', 'object', 'unicode', 'bytearray']):
+                      'text', 'object', 'unicode', 'bytearray', 'memoryview']):
             setattr(space, 'w_' + name, w_some_obj())
         space.w_type = w_some_type()
         #


More information about the pypy-commit mailing list