Re: [VOTE] Release PyLucene 4.10.1-0

2014-09-30 Thread Aric Coady
I’ve found a regression involving Python* classes. If the overridden methods raise an error, it’s causing a crash instead of propagating the error. Here’s a simple example: from org.apache.pylucene.search import PythonFilter class Filter(PythonFilter): Broken filter to test errors are

Re: [VOTE] Release PyLucene 4.10.1-0

2014-09-30 Thread Andi Vajda
On Tue, 30 Sep 2014, Aric Coady wrote: I?ve found a regression involving Python* classes. If the overridden methods raise an error, it?s causing a crash instead of propagating the error. Here?s a simple example: from org.apache.pylucene.search import PythonFilter class