diff options
| author | Akuli <akuviljanen17@gmail.com> | 2022-05-25 15:34:14 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-25 15:34:14 (GMT) |
| commit | a4974003ecdb0aba2385ca6f2af91aa989696cab (patch) | |
| tree | c8f972d5803ac08d1d1c8ee3897efa1c0066f6e9 /Lib/test/test_asyncio/test_runners.py | |
| parent | 1f134e96ba994bea3aaea533d4a558df3c5cc3c0 (diff) | |
| download | cpython-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_runners.py')
| -rw-r--r-- | Lib/test/test_asyncio/test_runners.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_runners.py b/Lib/test/test_asyncio/test_runners.py index 0c20921..957cfe4 100644 --- a/Lib/test/test_asyncio/test_runners.py +++ b/Lib/test/test_asyncio/test_runners.py @@ -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(): |
