bpo-8595: Update urllib, httplib, smtplib docs to warn about global timeout value by akulakov · Pull Request #27087 · python/cpython
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| @@ -46,6 +46,9 @@ The module provides the following classes: | |||
| The optional *blocksize* parameter sets the buffer size in bytes for | |||
| sending a file-like message body. | |||
|
|
|||
| Warning: the global default timeout value is set with no timeout, which may | |||
| @@ -657,6 +662,10 @@ OpenerDirector Objects | |||
| timeout setting will be used). The timeout feature actually works only for | |||
| HTTP, HTTPS and FTP connections). | |||
|
|
|||
| .. note:: | |||
|
|
|||
| The global default timeout value is to never time out, which is often | |||