Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-dev
On 07/31/2010 11:10 PM, Arfrever Frehtes Taifersar Arahesis wrote:
>>
>> If the variable is set but not exported then it is local to the shell
>> env. When bash goes to exec() python the local shell variables are
>> not in the env; so os.environ() will not contain them.
>>
>> antarus@kyoto ~ $ foo=BAR
>> antarus@kyoto ~ $ echo $foo
>> BAR
>> antarus@kyoto ~ $ python -c 'import os; print os.environ.get("foo")'
>> None
>> antarus@kyoto ~ $ export foo
>> antarus@kyoto ~ $ python -c 'import os; print os.environ.get("foo")'
>> BAR
>
> I want only variables exported to Python processes.
>
export -p
Petteri
|
|