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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, chris.nojima
Date 2011-03-04.23:38:00
SpamBayes Score 0.00092963374
Marked as misclassified No
Message-id <1299281881.5.0.956826702583.issue11398@psf.upfronthosting.co.za>
In-reply-to
Content
hmm, the code of urllib.request.getproxies_environment contains::
    for name, value in os.environ.items():
        name = name.lower()
        if value and name[-6:] == '_proxy':
            proxies[name[:-6]] = value  
So the comparison is effectively case-insensitive.
What is the problem exactly?
History
Date User Action Args
2011-03-04 23:38:01amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, chris.nojima
2011-03-04 23:38:01amaury.forgeotdarcsetmessageid: <1299281881.5.0.956826702583.issue11398@psf.upfronthosting.co.za>
2011-03-04 23:38:00amaury.forgeotdarclinkissue11398 messages
2011-03-04 23:38:00amaury.forgeotdarccreate