On Mon, 27 Sep 2010, Christian Heimes wrote:
Am 27.09.2010 18:10, schrieb Christian Heimes:
I'm trying to port our application to PyLucene 3.x. Most changes were
trivial but now I've hit a dead end. The test suite always seg faults
when it tries to add a document to the index.
Our subclass of lucene.PythonAnalyzer seems to trigger the unhandled
java exception. I'll try to sort it out.
A stack overflow from an extension can come from a missing native method
implementation in the Python subclass. The parent's method would be invoked
instead and that method's job is to invoke the child's, and so on...
Andi..