Bug #131507, was updated on 2001-Feb-07 23:09
Here is a current snapshot of the bug.
Project: Jython
Category: Core
Status: Open
Resolution: None
Bug Group: None
Priority: 5
Submitted by: tbreuel
Assigned to : nobody
Summary: stack overflow for simple class
Details: 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')
For detailed info, follow this link:
http://sourceforge.net/bugs/?func=detailbug&bug_id=131507&group_id=12867
|