commit | b3a88b5c421fe867e1f5ecdd179b190614729933 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Thu Oct 14 18:31:39 2010 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Thu Oct 14 18:31:39 2010 +0000 |
tree | 11b71886116a5b9c63184308b17ab3792906c6f5 | |
parent | 270800c801c777e1fb39d158fd60a0999d87bf0d [diff] [blame] |
Really fix bug
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py index fc3db9f..f0766b2 100644 --- a/Lib/test/test_urllib.py +++ b/Lib/test/test_urllib.py
@@ -118,8 +118,8 @@ # Records changes to env vars self.env = support.EnvironmentVarGuard() # Delete all proxy related env vars - for k in os.environ.keys(): - if k == 'NO_PROXY': + for k in list(os.environ): + if 'proxy' not in k.lower(): self.env.unset(k) def tearDown(self):