summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_locks.py
diff options
context:
space:
mode:
authorAkuli <akuviljanen17@gmail.com>2022-05-25 15:34:14 (GMT)
committerGitHub <noreply@github.com>2022-05-25 15:34:14 (GMT)
commita4974003ecdb0aba2385ca6f2af91aa989696cab (patch)
treec8f972d5803ac08d1d1c8ee3897efa1c0066f6e9 /Lib/test/test_asyncio/test_locks.py
parent1f134e96ba994bea3aaea533d4a558df3c5cc3c0 (diff)
downloadcpython-a4974003ecdb0aba2385ca6f2af91aa989696cab.zip
cpython-a4974003ecdb0aba2385ca6f2af91aa989696cab.tar.gz
cpython-a4974003ecdb0aba2385ca6f2af91aa989696cab.tar.bz2
gh-93124: Fix typos in comments (GH-93125)
Fixes #93124 Automerge-Triggered-By: GH:rhettinger
Diffstat (limited to 'Lib/test/test_asyncio/test_locks.py')
-rw-r--r--Lib/test/test_asyncio/test_locks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_locks.py b/Lib/test/test_asyncio/test_locks.py
index 415cbe5..ff25d9e 100644
--- a/Lib/test/test_asyncio/test_locks.py
+++ b/Lib/test/test_asyncio/test_locks.py
@@ -1271,7 +1271,7 @@ class BarrierTests(unittest.IsolatedAsyncioTestCase):
# catch here waiting tasks
results1.append(True)
else:
- # here drained task ouside the barrier
+ # here drained task outside the barrier
if rest_of_tasks == barrier._count:
# tasks outside the barrier
await barrier.reset()
@@ -1377,7 +1377,7 @@ class BarrierTests(unittest.IsolatedAsyncioTestCase):
# last task exited from barrier
await barrier.reset()
- # wit here to reach the `parties`
+ # wait here to reach the `parties`
await barrier.wait()
else:
try: