[pypy-commit] pypy py3k: fix translation

rlamy pypy.commits at gmail.com
Wed Sep 7 10:12:25 EDT 2016


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3k
Changeset: r86935:812903497ffc
Date: 2016-09-07 15:11 +0100
http://bitbucket.org/pypy/pypy/changeset/812903497ffc/

Log:	fix translation

diff --git a/pypy/objspace/std/memoryobject.py b/pypy/objspace/std/memoryobject.py
--- a/pypy/objspace/std/memoryobject.py
+++ b/pypy/objspace/std/memoryobject.py
@@ -26,7 +26,6 @@
     """Implement the built-in 'memoryview' type as a wrapper around
     an interp-level buffer.
     """
-    _attrs_ = ['buf']
 
     def __init__(self, buf, format=None, itemsize=1, ndim=-1,
                  shape=None, strides=None, suboffsets=None):


More information about the pypy-commit mailing list