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 alphalfalfa
Recipients alphalfalfa
Date 2015-11-16.22:46:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1447713968.83.0.231956831244.issue25641@psf.upfronthosting.co.za>
In-reply-to
Content
For the following lines of code, "dictionary changed size during iteration" would be thrown when the environment variables change while in iteration.

Python-3.5.0/Lib/urllib/request.py
2393     for name, value in os.environ.items():
2394         name = name.lower()
2395         if value and name[-6:] == '_proxy':
2396             proxies[name[:-6]] = value
History
Date User Action Args
2015-11-16 22:46:08alphalfalfasetrecipients: + alphalfalfa
2015-11-16 22:46:08alphalfalfasetmessageid: <1447713968.83.0.231956831244.issue25641@psf.upfronthosting.co.za>
2015-11-16 22:46:08alphalfalfalinkissue25641 messages
2015-11-16 22:46:08alphalfalfacreate