[pypy-commit] pypy gc-del: Same as c9b26c923fc6 again.

arigo noreply at buildbot.pypy.org
Sat Aug 10 21:55:45 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: gc-del
Changeset: r66066:72f1cd32089b
Date: 2013-08-10 21:54 +0200
http://bitbucket.org/pypy/pypy/changeset/72f1cd32089b/

Log:	Same as c9b26c923fc6 again.

diff --git a/pypy/module/_io/test/test_bufferedio.py b/pypy/module/_io/test/test_bufferedio.py
--- a/pypy/module/_io/test/test_bufferedio.py
+++ b/pypy/module/_io/test/test_bufferedio.py
@@ -284,7 +284,7 @@
         class MyIO(_io.BufferedWriter):
             def __del__(self):
                 record.append(1)
-                super(MyIO, self).__del__()
+                #super(MyIO, self).__del__() --- does not exist
             def close(self):
                 record.append(2)
                 super(MyIO, self).close()


More information about the pypy-commit mailing list