diff options
author | Ned Deily <nad@acm.org> | 2014-11-24 04:55:55 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2014-11-24 04:55:55 (GMT) |
commit | 40ce014baf1595b79bf091d8eebbae3a1ac5f3a6 (patch) | |
tree | f1711e9e7289603cb8539bc562519c6b98d00cb9 /Doc | |
parent | 51f461fbd3b42a170bccbd0864a91de4a2e5a541 (diff) | |
download | cpython-40ce014baf1595b79bf091d8eebbae3a1ac5f3a6.zip cpython-40ce014baf1595b79bf091d8eebbae3a1ac5f3a6.tar.gz cpython-40ce014baf1595b79bf091d8eebbae3a1ac5f3a6.tar.bz2 |
Fix faulty indent.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/urllib2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib2.rst b/Doc/library/urllib2.rst index 65d11e1..ce0fa98 100644 --- a/Doc/library/urllib2.rst +++ b/Doc/library/urllib2.rst @@ -38,7 +38,7 @@ The :mod:`urllib2` module defines the following functions: The optional *timeout* parameter specifies a timeout in seconds for blocking operations like the connection attempt (if not specified, the global default timeout setting will be used). This actually only works for HTTP, HTTPS and - FTP connections. + FTP connections. If *context* is specified, it must be a :class:`ssl.SSLContext` instance describing the various SSL options. See :class:`~httplib.HTTPSConnection` for |