Re: [pypy-dev] RPython Environment Variables

2013-10-31 Thread Amaury Forgeot d'Arc
2013/11/1 Ryan Gonzalez > I am writing a tool in RPython that needs to access environment variables. > Now, all has been going well, but I noticed something interesting. The > RPython translator sees os.environ as constant. But, will it still be > constant on other platforms? > > What I'm saying

Re: [pypy-dev] RPython Environment Variables

2013-10-31 Thread Benjamin Peterson
Presumably, you can just use get/setenv() 2013/10/31 Ryan Gonzalez : > I am writing a tool in RPython that needs to access environment variables. > Now, all has been going well, but I noticed something interesting. The > RPython translator sees os.environ as constant. But, will it still be > const

[pypy-dev] RPython Environment Variables

2013-10-31 Thread Ryan Gonzalez
I am writing a tool in RPython that needs to access environment variables. Now, all has been going well, but I noticed something interesting. The RPython translator sees os.environ as constant. But, will it still be constant on other platforms? What I'm saying is, are the environment variables per