diff options
Diffstat (limited to 'Lib/asyncio/constants.py')
-rw-r--r-- | Lib/asyncio/constants.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/asyncio/constants.py b/Lib/asyncio/constants.py index 52169c3f8e..0ad974ff2f 100644 --- a/Lib/asyncio/constants.py +++ b/Lib/asyncio/constants.py @@ -8,3 +8,6 @@ ACCEPT_RETRY_DELAY = 1 # The larger the number, the slower the operation in debug mode # (see extract_stack() in format_helpers.py). DEBUG_STACK_DEPTH = 10 + +# Number of seconds to wait for SSL handshake to complete +SSL_HANDSHAKE_TIMEOUT = 10.0 |