Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox.

This commit is contained in:
Senthil Kumaran 2010-01-08 18:25:42 +00:00
parent e0f4be7e5d
commit d3ffdb44c8
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ class ProxyTests(unittest.TestCase):
# Records changes to env vars
self.env = test_support.EnvironmentVarGuard()
# Delete all proxy related env vars
for k, v in os.environ.iteritems():
for k in os.environ.keys():
if 'proxy' in k.lower():
self.env.unset(k)