Issue1895736

classification
Title: cleanup os.environ
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: pjenvey
Priority: normal Keywords:

Created on 2008-02-18.01:28:31 by pjenvey, last changed 2008-02-24.04:24:54 by pjenvey.

Messages
msg2074 (view) Author: Philip Jenvey (pjenvey) Date: 2008-02-18.01:28:31
Our gathering of environ data (os.environ) is now antiquated as of Java 1.5. We currently have a hack of grabbing the environ data via a shell process (handled by the javashell module), when we can now simply use Java 1.5's System.getenv()

Changing to getenv() will cleanup some of javashell. We still need to be careful of requiring the environment variable keys to be uppercased on windows platforms (CPython also has to handle this, see its os.py). javashell handles this for us currently
msg3049 (view) Author: Philip Jenvey (pjenvey) Date: 2008-02-24.04:24:54
fixed in r4171
History
Date User Action Args
2008-02-24 04:24:54pjenveysetstatus: open -> closed
resolution: fixed
messages: + msg3049
2008-02-18 01:28:31pjenveycreate