Message280

Author tbreuel
Recipients
Date 2001-02-08.07:09:27
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
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')
History
Date User Action Args
2008-02-20 17:16:48adminlinkissue231507 messages
2008-02-20 17:16:48admincreate