Paul Nasrat <pnas...@gmail.com> added the comment:

Ok so it seems I can't just use sys.meta_path in pip to work with ImpImporter 
due to according to the pydoc:

Note that ImpImporter does not currently support being used by placement on 
sys.meta_path.

I guess I can write a custom importer in pip for handling the vcs plugins or 
possibly change how we do that. Another option is to grossly hack around ala:

i = ImpImporter(path=vcs.__path__[0])
sys.path_importer_cache.setdefault(vcs.__path__[0], i)

Found another bug doing this though which I'll follow up with a patch.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue14982>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to