This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author BinaryKhaos
Recipients BinaryKhaos, eric.araujo, ned.deily, pitrou, vinay.sajip
Date 2014-04-12.07:18:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397287098.34.0.489746503485.issue21197@psf.upfronthosting.co.za>
In-reply-to
Content
@vinay.sajip: No problem. Jedi is a auto-completion library. It does not add any links anywhere. It naturally has to know about which venvs you use so it can find all modules and their sources to process them. Thus, you (or the implementation using Jedi) pass it the base directories of the venvs and it constructs the appropriate path to the site-packages and uses those internally. Rightfully, it assumes a lib/ directory to contain everything which works just fine for virtualenv created venvs due to the symlink but not for venv created venvs.

@ned.deily: I know what you mean. And I am very inclined to fully agree with you that dists should patch this as well. But the problem I see with this is: Except for Debian-based dists, all of the other major ones  (Gentoo, Fedora/RedHat/CentOS, OpenSUSE, ...) and their derivatives, put Python under lib64/ on multilib systems. And the patches they use and the changes they introduce already differ here and there in important key details. It would be no different with this issue as well. Besides, this scenario (Python under lib64/) is not so uncommon anymore and imho, should be supported by Python out of the box by making those things properly configurable during compilation. But that is a different subject altogether.

IMHO, this feature is small enough to be added to Python's venv to standardize it across dists. Besides, it makes it more compatible and a better drop-in replacement for virtualenv itself.
History
Date User Action Args
2014-04-12 07:18:18BinaryKhaossetrecipients: + BinaryKhaos, vinay.sajip, pitrou, ned.deily, eric.araujo
2014-04-12 07:18:18BinaryKhaossetmessageid: <1397287098.34.0.489746503485.issue21197@psf.upfronthosting.co.za>
2014-04-12 07:18:18BinaryKhaoslinkissue21197 messages
2014-04-12 07:18:16BinaryKhaoscreate