Author: Daniel Roberts <[email protected]>
Branch: ootype-rerased
Changeset: r45895:3589c6241735
Date: 2011-07-23 02:02 -0700
http://bitbucket.org/pypy/pypy/changeset/3589c6241735/

Log:    Calling super(...).__init__() wasn't necessary here.

diff --git a/pypy/translator/cli/metavm.py b/pypy/translator/cli/metavm.py
--- a/pypy/translator/cli/metavm.py
+++ b/pypy/translator/cli/metavm.py
@@ -176,7 +176,6 @@
 class _UnboxType(MicroInstruction):
     def __init__(self, TO):
         self.TO = TO
-        super(_UnboxType, self).__init__()
 
     def render(self, generator, op):
         v_obj, = op.args
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to