gh-93124: Fix typos in comments (GH-93125)

Fixes #93124

Automerge-Triggered-By: GH:rhettinger
This commit is contained in:
Akuli 2022-05-25 18:34:14 +03:00 committed by GitHub
parent 1f134e96ba
commit a4974003ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View file

@ -376,9 +376,9 @@ class RunnerTests(BaseTest):
with asyncio.Runner() as runner:
with self.assertRaises(asyncio.CancelledError):
runner.run(coro())
def test_signal_install_not_supported_ok(self):
# signal.signal() can throw if the "main thread" doensn't have signals enabled
# signal.signal() can throw if the "main thread" doesn't have signals enabled
assert threading.current_thread() is threading.main_thread()
async def coro():