mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Fix for Issue7026. For the Error - RuntimeError: dictionary changed size during iteration
This commit is contained in:
parent
8015725d4f
commit
7a2ee0b460
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue