[issue26203] nesting venv in virtualenv segfaults

2016-01-26 Thread Brett Cannon
Changes by Brett Cannon : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue26203] nesting venv in virtualenv segfaults

2016-01-25 Thread Vinay Sajip
Vinay Sajip added the comment: By design, the stdlib venv functionality expects to work from an installed Python. However, the Python in a virtualenv venv is not an installed Python - it copies some files from the Python it was installed from and does various other hacks in order to work (I'm

[issue26203] nesting venv in virtualenv segfaults

2016-01-25 Thread Florian Bruhin
Changes by Florian Bruhin : -- nosy: +The Compiler, dstufft, vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue26203] nesting venv in virtualenv segfaults

2016-01-25 Thread André Caron
New submission from André Caron: When trying to create a new virtual environment using Python 3.5's venv package from a virtual environment created by the popular 3rd-party virtualenv package, I get a segfault. Nested virtual environments work fine both with venv and virtualenv, but using on