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 freso
Recipients
Date 2006-03-01.12:29:44
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The os module uses get/set for pretty much everything,
except for env, where it uses get/put. It still uses
un_set_env though.
This patch makes a newfunction setenv if putenv is
available, and makes setenv(key, value) call
putenv(key, value). I wasn't sure whether to use
default values (key=None, value=None) or not, but I
ended up doing so anyway.
History
Date User Action Args
2007-08-23 15:46:10adminlinkissue1440928 messages
2007-08-23 15:46:10admincreate