[pypy-commit] pypy ootype-rerased: Calling super(...).__init__() wasn't necessary here.

ademan noreply at buildbot.pypy.org
Sat Jul 23 11:02:51 CEST 2011


Author: Daniel Roberts <Ademan555 at gmail.com>
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


More information about the pypy-commit mailing list