diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-01-10 17:29:08 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-01-10 17:29:08 (GMT) |
commit | 19d85c2762feae1765de6e2e509b5744a0d60293 (patch) | |
tree | 33e8eac1f4dfa6c989c44a8de98b5beaec9fcba2 /Doc/library/urllib.request.rst | |
parent | ee91e0990a80e44d559cb602560ee05d266617cd (diff) | |
download | cpython-19d85c2762feae1765de6e2e509b5744a0d60293.zip cpython-19d85c2762feae1765de6e2e509b5744a0d60293.tar.gz cpython-19d85c2762feae1765de6e2e509b5744a0d60293.tar.bz2 |
Issue9637 - Explain in getproxies_environment that <scheme>_proxy environ variable case does not matter.
Diffstat (limited to 'Doc/library/urllib.request.rst')
-rw-r--r-- | Doc/library/urllib.request.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index 6b2b013..cc759a4 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -124,10 +124,10 @@ The :mod:`urllib.request` module defines the following functions: .. function:: getproxies() This helper function returns a dictionary of scheme to proxy server URL - mappings. It scans the environment for variables named ``<scheme>_proxy`` - for all operating systems first, and when it cannot find it, looks for proxy - information from Mac OSX System Configuration for Mac OS X and Windows - Systems Registry for Windows. + mappings. It scans the environment for variables named ``<scheme>_proxy``, + in a case insensitive approach, for all operating systems first, and when it + cannot find it, looks for proxy information from Mac OSX System + Configuration for Mac OS X and Windows Systems Registry for Windows. The following classes are provided: |