Index: . =================================================================== --- . (revision 3455) +++ . (working copy) @@ -23,9 +23,9 @@ public PyObject __call__(PyObject arg0) { try { String name=(arg0.asName(0)); - PyObject ret=((PySuper)self).super___findattr__(name); + PyObject ret=((PySuper)this.self).super___findattr__(name); if (ret==null) - ((PySuper)self).noAttributeError(name); + ((PySuper)this.self).noAttributeError(name); return ret; } catch (PyObject.ConversionException e) { String msg; @@ -55,7 +55,7 @@ public PyObject __call__(PyObject arg0,PyObject arg1) { PyObject obj=(arg0==Py.None)?null:arg1; PyObject type=(arg1==Py.None)?null:arg0; - return((PySuper)self).super___get__(obj,type); + return((PySuper)this.self).super___get__(obj,type); } public PyObject __call__(PyObject arg0) { @@ -61,7 +61,7 @@ public PyObject __call__(PyObject arg0) { PyObject obj=(arg0==Py.None)?null:(null); PyObject type=((null)==Py.None)?null:arg0; - return((PySuper)self).super___get__(obj,type); + return((PySuper)this.self).super___get__(obj,type); } } @@ -81,7 +81,7 @@ } public PyObject __call__(PyObject[]args,String[]keywords) { - ((PySuper)self).super_init(args,keywords); + ((PySuper)this.self).super_init(args,keywords); return Py.None; }