On Mon, Oct 25, 2010 at 02:00:16PM +0200, Arve Knudsen wrote: > I found it by myself, I've been busy debugging in the meantime. It turns out > the problem is that an installed egg of my project is on the path before my > source directory even though the latter is first in PYTHONPATH. This is > apparently not a pylint issue AFAIK, but surprising (to me) nonetheless.
Every installed eggs are imported before package found in PYTHONPATH and standard module directory. This is one of the setuptools issue that motivate the switch to distribute and distutils2. The complicated setup.py develop command was a workaround to this issue. -- Pierre-Yves David
signature.asc
Description: Digital signature
_______________________________________________ Python-Projects mailing list [email protected] http://lists.logilab.org/mailman/listinfo/python-projects
