[Python-checkins] cpython (2.7): port to 2.7 - Issue9637 - Details that case of Proxy env var does not matter.

senthil.kumaran python-checkins at python.org
Tue Jan 10 18:35:21 CET 2012


http://hg.python.org/cpython/rev/4a30eae3b945
changeset:   74324:4a30eae3b945
branch:      2.7
parent:      74321:01ef13e9e225
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Wed Jan 11 01:35:02 2012 +0800
summary:
  port to 2.7 - Issue9637 - Details that case of Proxy env var does not matter.

files:
  Doc/library/urllib.rst |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/library/urllib.rst b/Doc/library/urllib.rst
--- a/Doc/library/urllib.rst
+++ b/Doc/library/urllib.rst
@@ -274,10 +274,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 case insensitive way, 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.
 
 
 URL Opener objects

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


More information about the Python-checkins mailing list