[Python-checkins] Fix a typo (#4323)

Barry Warsaw webhook-mailer at python.org
Tue Nov 7 12:05:18 EST 2017


https://github.com/python/cpython/commit/c060c7e3d1000f867f6c54f54ebbc49e0c6d6b38
commit: c060c7e3d1000f867f6c54f54ebbc49e0c6d6b38
branch: master
author: Barry Warsaw <barry at python.org>
committer: GitHub <noreply at github.com>
date: 2017-11-07T09:05:15-08:00
summary:

Fix a typo (#4323)

files:
M Lib/asyncio/constants.py

diff --git a/Lib/asyncio/constants.py b/Lib/asyncio/constants.py
index e74209e149d..60ca0da75f8 100644
--- a/Lib/asyncio/constants.py
+++ b/Lib/asyncio/constants.py
@@ -7,6 +7,6 @@
 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



More information about the Python-checkins mailing list