Author: Manuel Jacob
Branch: py3k-memoryview
Changeset: r62024:5e417536ec16
Date: 2013-03-04 21:30 +0100
http://bitbucket.org/pypy/pypy/changeset/5e417536ec16/

Log:    hg backout 8fd11c9b3613

diff --git a/pypy/interpreter/buffer.py b/pypy/interpreter/buffer.py
--- a/pypy/interpreter/buffer.py
+++ b/pypy/interpreter/buffer.py
@@ -26,7 +26,7 @@
 class Buffer(Wrappable):
     """Abstract base class for memory views."""
 
-    _attrs_ = ('format', 'itemsize')
+    __slots__ = ('format', 'itemsize')
     format = 'B'
     itemsize = 1
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to