[pypy-commit] pypy default: Bah? Attribute never needed

arigo noreply at buildbot.pypy.org
Thu Jan 30 12:29:48 CET 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r69016:e636fc70542a
Date: 2014-01-30 11:29 +0100
http://bitbucket.org/pypy/pypy/changeset/e636fc70542a/

Log:	Bah? Attribute never needed

diff --git a/pypy/module/_io/interp_iobase.py b/pypy/module/_io/interp_iobase.py
--- a/pypy/module/_io/interp_iobase.py
+++ b/pypy/module/_io/interp_iobase.py
@@ -341,7 +341,6 @@
 class StreamHolder(object):
     def __init__(self, w_iobase):
         self.w_iobase_ref = rweakref.ref(w_iobase)
-        w_iobase.autoflusher = self
 
     def autoflush(self, space):
         w_iobase = self.w_iobase_ref()


More information about the pypy-commit mailing list