diff -r 8df52636b0dc Doc/library/fl.rst --- a/Doc/library/fl.rst Thu Mar 17 15:02:19 2016 -0700 +++ b/Doc/library/fl.rst Fri Mar 18 11:56:54 2016 +0545 @@ -17,7 +17,7 @@ single: Overmars, Mark This module provides an interface to the FORMS Library by Mark Overmars. The -source for the library can be retrieved by anonymous ftp from host +source for the library can be retrieved by anonymous FTP from host ``ftp.cs.ruu.nl``, directory :file:`SGI/FORMS`. It was last tested with version 2.0b. diff -r 8df52636b0dc Doc/library/ftplib.rst --- a/Doc/library/ftplib.rst Thu Mar 17 15:02:19 2016 -0700 +++ b/Doc/library/ftplib.rst Fri Mar 18 11:56:54 2016 +0545 @@ -16,7 +16,7 @@ This module defines the class :class:`FTP` and a few related items. The :class:`FTP` class implements the client side of the FTP protocol. You can use this to write Python programs that perform a variety of automated FTP jobs, such -as mirroring other ftp servers. It is also used by the module :mod:`urllib` to +as mirroring other FTP servers. It is also used by the module :mod:`urllib` to handle URLs that use FTP. For more information on FTP (File Transfer Protocol), see Internet :rfc:`959`. diff -r 8df52636b0dc Doc/library/httplib.rst --- a/Doc/library/httplib.rst Thu Mar 17 15:02:19 2016 -0700 +++ b/Doc/library/httplib.rst Fri Mar 18 11:56:54 2016 +0545 @@ -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 8df52636b0dc Doc/library/urllib.rst --- a/Doc/library/urllib.rst Thu Mar 17 15:02:19 2016 -0700 +++ b/Doc/library/urllib.rst Fri Mar 18 11:56:54 2016 +0545 @@ -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 diff -r 8df52636b0dc Doc/library/urllib2.rst --- a/Doc/library/urllib2.rst Thu Mar 17 15:02:19 2016 -0700 +++ b/Doc/library/urllib2.rst Fri Mar 18 11:56:54 2016 +0545 @@ -21,7 +21,7 @@ .. seealso:: The `Requests package `_ - is recommended for a higher-level http client interface. + is recommended for a higher-level HTTP client interface. The :mod:`urllib2` module defines the following functions: diff -r 8df52636b0dc Doc/library/xmlrpclib.rst --- a/Doc/library/xmlrpclib.rst Thu Mar 17 15:02:19 2016 -0700 +++ b/Doc/library/xmlrpclib.rst Fri Mar 18 11:56:54 2016 +0545 @@ -36,7 +36,7 @@ .. versionchanged:: 2.7.9 - For https URIs, :mod:`xmlrpclib` now performs all the necessary certificate + For HTTPS URIs, :mod:`xmlrpclib` now performs all the necessary certificate and hostname checks by default .. class:: ServerProxy(uri[, transport[, encoding[, verbose[, allow_none[, use_datetime[, context]]]]]])