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 niemeyer
Recipients niemeyer
Date 2007-10-16.17:55:48
SpamBayes Score 0.5
Marked as misclassified No
Message-id <1192557349.01.0.0540058950355.issue1287@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import os
>>> os.system("echo $ASD")

0
>>> os.environ["ASD"] = "asd"
>>> os.system("echo $ASD")
asd
0
>>> os.environ.pop("ASD")
'asd'
>>> os.system("echo $ASD")
asd
0
History
Date User Action Args
2007-10-16 17:55:49niemeyersetrecipients: + niemeyer
2007-10-16 17:55:49niemeyersetmessageid: <1192557349.01.0.0540058950355.issue1287@psf.upfronthosting.co.za>
2007-10-16 17:55:48niemeyerlinkissue1287 messages
2007-10-16 17:55:48niemeyercreate