On Wed, 25 Jul 2012, Roman Chyla wrote:
I am now using the --use_full_names and it works without greater problems, even against the latest lucene trunk The only nuisance is that modules defined in java take over modules defined in python (I happened to have one name which was the same for both, so I renamed the java package)
Maybe a top level 'java' package should be added to all the packages created when --use_full_names is used ? Thus >>> from org.apache.lucene.document import Document would become >>> from java.org.apache.lucene.document import Document It's even more typing but a little less intrusive on existing package names ? Andi..