|
From: <no...@so...> - 2001-03-22 20:51:12
|
Bugs item #231507, was updated on 2001-02-07 23:09 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=112867&aid=231507&group_id=12867 Category: Core Group: None >Status: Closed Priority: 5 Submitted By: Thomas Breuel (tbreuel) >Assigned to: Finn Bock (bckfnn) Summary: stack overflow for simple class Initial Comment: The little program below dies with a stack overflow. Apparently, something is going wrong with combining the PyList class (which conforms to the List interface) with the List interface. This should probably either be disallowed, or, better, should work correctly. import java.util import org.python.core class LX(org.python.core.PyList,java.util.List): pass l = LX() l.add('x') ---------------------------------------------------------------------- >Comment By: Finn Bock (bckfnn) Date: 2001-03-22 12:51 Message: Logged In: YES user_id=4201 Fixed in: PyClass.java: 2.23; ProxyMaker.java: 2.12; JavaMaker.java: 2.10; ObjectFactory.py: 2.7; compile.py: 2.17; proxies.py: 2.10; ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=112867&aid=231507&group_id=12867 |