diff options
author | Barry Warsaw <barry@python.org> | 2017-11-07 17:05:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 17:05:15 (GMT) |
commit | c060c7e3d1000f867f6c54f54ebbc49e0c6d6b38 (patch) | |
tree | 2f805a6cbc2c90830584b3728b834e85cce797b1 /Lib/asyncio | |
parent | 5a66c8a64d180b5f3c80307924adaec53cc8faa3 (diff) | |
download | cpython-c060c7e3d1000f867f6c54f54ebbc49e0c6d6b38.zip cpython-c060c7e3d1000f867f6c54f54ebbc49e0c6d6b38.tar.gz cpython-c060c7e3d1000f867f6c54f54ebbc49e0c6d6b38.tar.bz2 |
Fix a typo (#4323)
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/constants.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/constants.py b/Lib/asyncio/constants.py index e74209e..60ca0da 100644 --- a/Lib/asyncio/constants.py +++ b/Lib/asyncio/constants.py @@ -7,6 +7,6 @@ LOG_THRESHOLD_FOR_CONNLOST_WRITES = 5 ACCEPT_RETRY_DELAY = 1 # Number of stack entries to capture in debug mode. -# The large the number, the slower the operation in debug mode -# (see extract_stack() in events.py) +# The larger the number, the slower the operation in debug mode +# (see extract_stack() in events.py). DEBUG_STACK_DEPTH = 10 |