Author: Armin Rigo <[email protected]>
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()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to