From: <no...@so...> - 2001-02-14 22:36:08
|
Bug #129363, was updated on 2001-Jan-19 01:47 Here is a current snapshot of the bug. Project: Jython Category: Core Status: Closed Resolution: Fixed Bug Group: None Priority: 3 Submitted by: bckfnn Assigned to : bckfnn Summary: Calling overriden method from java ctor Details: Methods implemented in python will not be called from the java super class constructor. Se this mail for more details: http://mail.python.org/pipermail/jpython-interest/2000-September/003871.html Follow-Ups: Date: 2001-Feb-14 14:36 By: bckfnn Comment: Fixed as good as it can be fixed. If an overriden method is called from the java ctor, the python ctor will be called without any arguments. If the python ctor expect arguments, the java class have to call the __initProxy__(Object[]) method. ((PyProxy) this).__initProxy__(new Object[] { "A string", new Integer(42), }); ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=129363&group_id=12867 |