On 07 September 10:36, Nikolaus Rath wrote: > No, I think that's not quite what I want. On the highest level, all I > want is have pylint run faster on the example above. > > I believe what's slowing down pylint there is that it's loading the > entire IPython module (which is imported by seemsbig.py), so what I > would like to do is tell ipython to not attempt to check any calls into > IPython, so that it does not have to load that package.
notice pylint doesn't attempt to check anything in ipython, but loads (part of) it as needed to infer stuff you access in seemsbig.py you can still provide an empty IPython.py module earlier in python path but that will lead to false positives reported. -- Sylvain Thénault LOGILAB, Paris (France) Formations Python, Debian, Méth. Agiles: http://www.logilab.fr/formations Développement logiciel sur mesure: http://www.logilab.fr/services CubicWeb, the semantic web framework: http://www.cubicweb.org _______________________________________________ Python-Projects mailing list [email protected] http://lists.logilab.org/mailman/listinfo/python-projects
