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 draghuram
Recipients draghuram, georg.brandl, niemeyer
Date 2007-10-25.13:54:58
SpamBayes Score 0.07326368
Marked as misclassified No
Message-id <1193320498.59.0.127460184743.issue1287@psf.upfronthosting.co.za>
In-reply-to
Content
After reading the change, I think one more small change may be required.

Index: Lib/os.py
===================================================================
--- Lib/os.py   (revision 58654)
+++ Lib/os.py   (working copy)
@@ -452,7 +452,7 @@
                         del self.data[key]
                 def pop(self, key, *args):
                     unsetenv(key)
-                    return self.data.pop(key, *args)
+                    return self.data.pop(key.upper(), *args)
             def has_key(self, key):
                 return key.upper() in self.data
             def __contains__(self, key):
History
Date User Action Args
2007-10-25 13:54:58draghuramsetspambayes_score: 0.0732637 -> 0.07326368
recipients: + draghuram, georg.brandl, niemeyer
2007-10-25 13:54:58draghuramsetspambayes_score: 0.0732637 -> 0.0732637
messageid: <1193320498.59.0.127460184743.issue1287@psf.upfronthosting.co.za>
2007-10-25 13:54:58draghuramlinkissue1287 messages
2007-10-25 13:54:58draghuramcreate