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 Lucretiel
Recipients Lucretiel, matrixise
Date 2016-02-16.23:03:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1455663820.81.0.889701599729.issue25671@psf.upfronthosting.co.za>
In-reply-to
Content
Not quite, no. The issue looks like this:

    user@host ~/test> python3 -mvenv env
    user@host ~/test> true
    user@host ~/test> false
    user@host ~/test [1]> source env/bin/activate.fish 
    (env) user@host ~/test> true
    (env) user@host ~/test> false
    (env) user@host ~/test> deactivate
    user@host ~/test> true
    user@host ~/test> false
    user@host ~/test [1]>

Notice that, after running the `false` command the first time, the command prompt includes a "[1]", indicating the exit status of the `false` command. However, after activating the virtual environment, the command prompt no longer shows the error code from the `false` command. After deactivating the virtualenv, the command prompt once again displays the error code from `false`.
History
Date User Action Args
2016-02-16 23:03:40Lucretielsetrecipients: + Lucretiel, matrixise
2016-02-16 23:03:40Lucretielsetmessageid: <1455663820.81.0.889701599729.issue25671@psf.upfronthosting.co.za>
2016-02-16 23:03:40Lucretiellinkissue25671 messages
2016-02-16 23:03:40Lucretielcreate