[Python-checkins] cpython (3.2): Issue9637 - Explain in getproxies_environment that <scheme>_proxy environ

senthil.kumaran python-checkins at python.org
Tue Jan 10 18:30:39 CET 2012


http://hg.python.org/cpython/rev/3370fa13ed73
changeset:   74322:3370fa13ed73
branch:      3.2
parent:      74316:b950267efd59
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Wed Jan 11 01:29:08 2012 +0800
summary:
  Issue9637 - Explain in getproxies_environment that <scheme>_proxy environ variable case does not matter.

files:
  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
--- a/Doc/library/urllib.request.rst
+++ b/Doc/library/urllib.request.rst
@@ -124,10 +124,10 @@
 .. 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:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list