diff -r 5715a6d9ff12 Doc/library/httplib.rst --- a/Doc/library/httplib.rst Wed Feb 10 13:44:29 2016 +0100 +++ b/Doc/library/httplib.rst Mon Mar 14 20:06:00 2016 +0530 @@ -27,7 +27,7 @@ .. seealso:: The `Requests package `_ - is recommended for a higher-level http client interface. + is recommended for a higher-level HTTP client interface. .. note:: diff -r 5715a6d9ff12 Doc/library/urllib.rst --- a/Doc/library/urllib.rst Wed Feb 10 13:44:29 2016 +0100 +++ b/Doc/library/urllib.rst Mon Mar 14 20:06:00 2016 +0530 @@ -27,7 +27,7 @@ .. seealso:: The `Requests package `_ - is recommended for a higher-level http client interface. + is recommended for a higher-level HTTP client interface. .. warning:: When opening HTTPS URLs, it does not attempt to validate the server certificate. Use at your own risk! @@ -118,7 +118,7 @@ causes environmental proxy settings to be used as discussed above. For example:: - # Use http://www.someproxy.com:3128 for http proxying + # Use http://www.someproxy.com:3128 for HTTP proxying proxies = {'http': 'http://www.someproxy.com:3128'} filehandle = urllib.urlopen(some_url, proxies=proxies) # Don't use any proxies