Author: Armin Rigo <[email protected]>
Branch: gc-del
Changeset: r66065:c9b26c923fc6
Date: 2013-08-10 21:49 +0200
http://bitbucket.org/pypy/pypy/changeset/c9b26c923fc6/

Log:    Remove this line, which simply causes an exception to be printed to
        stderr and otherwise ignored.

diff --git a/pypy/module/_io/test/test_io.py b/pypy/module/_io/test/test_io.py
--- a/pypy/module/_io/test/test_io.py
+++ b/pypy/module/_io/test/test_io.py
@@ -88,7 +88,7 @@
         class MyIO(io.IOBase):
             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