I have some hard time to access environment variables in a Python script but those environment variables are created by a C shell script. To further elaborate my question, this is what I am doing:
call.subprocess(['csh_script_that_sets_envar_abc.csh'])
print os.environ.get("abc")
Result:
None
Why can't the C shell script set the environment in the Python script.