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 eryksun
Recipients eryksun, themetman
Date 2015-08-31.18:28:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1441045684.67.0.587735087538.issue24971@psf.upfronthosting.co.za>
In-reply-to
Content
Did you mark the variable for export in your shell? For example:

    $ v=1
    $ python -c 'import os;print os.environ.get("v")'
    None

    $ export v
    $ python -c 'import os;print os.environ.get("v")'
    1
History
Date User Action Args
2015-08-31 18:28:04eryksunsetrecipients: + eryksun, themetman
2015-08-31 18:28:04eryksunsetmessageid: <1441045684.67.0.587735087538.issue24971@psf.upfronthosting.co.za>
2015-08-31 18:28:04eryksunlinkissue24971 messages
2015-08-31 18:28:04eryksuncreate