commit | 91abd6e68dfa4b0d9d91d7c5c05d5d384c2b2718 | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <orsenthil@gmail.com> | Thu Oct 01 01:07:03 2009 +0000 |
committer | Senthil Kumaran <orsenthil@gmail.com> | Thu Oct 01 01:07:03 2009 +0000 |
tree | 1f65f66e5574cbeb652bb895f816e8ed8dbbfa93 | |
parent | 8ca7482cc93946e88ae09e16d076f5e556f2e701 [diff] [blame] |
Fix for issue7026 test_urllib: unsetting missing 'env' variable.
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py index 9320c62..6eaefa2 100644 --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py
@@ -103,7 +103,7 @@ # Delete all proxy related env vars for k, v in os.environ.iteritems(): if 'proxy' in k.lower(): - del env[k] + del self.env[k] def tearDown(self): # Restore all proxy related env vars