[pypy-commit] pypy py3.5: Remove this get_raw_address() now that we have one in the base class

arigo pypy.commits at gmail.com
Mon Jul 23 12:31:08 EDT 2018


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r94886:8e5a7f8a9bf2
Date: 2018-07-23 18:30 +0200
http://bitbucket.org/pypy/pypy/changeset/8e5a7f8a9bf2/

Log:	Remove this get_raw_address() now that we have one in the base class

diff --git a/pypy/module/_io/interp_bytesio.py b/pypy/module/_io/interp_bytesio.py
--- a/pypy/module/_io/interp_bytesio.py
+++ b/pypy/module/_io/interp_bytesio.py
@@ -48,9 +48,6 @@
         finally:
             w_bytesio.seek(tell)
 
-    def get_raw_address(self):
-        raise ValueError("BytesIOBuffer does not have a raw address")
-
 
 class W_BytesIO(W_BufferedIOBase):
     import_from_mixin(RStringIO)


More information about the pypy-commit mailing list