diff options
author | Victor Stinner <vstinner@python.org> | 2023-06-06 20:50:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 20:50:43 (GMT) |
commit | ae319e4b43dc0d9d94d36bdcdbc5443364398c29 (patch) | |
tree | aef03900c10c94d8cc3848a3f5e9a5c3d6bcaf81 /Lib/test/test_asyncio | |
parent | d3a0eacbf382288a487d40f16d63abfeb2125e1a (diff) | |
download | cpython-ae319e4b43dc0d9d94d36bdcdbc5443364398c29.zip cpython-ae319e4b43dc0d9d94d36bdcdbc5443364398c29.tar.gz cpython-ae319e4b43dc0d9d94d36bdcdbc5443364398c29.tar.bz2 |
gh-105407: Remove unused imports in tests (#105408)
Diffstat (limited to 'Lib/test/test_asyncio')
-rw-r--r-- | Lib/test/test_asyncio/test_eager_task_factory.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_asyncio/test_eager_task_factory.py b/Lib/test/test_asyncio/test_eager_task_factory.py index fe69093..49d5dbb 100644 --- a/Lib/test/test_asyncio/test_eager_task_factory.py +++ b/Lib/test/test_asyncio/test_eager_task_factory.py @@ -2,17 +2,11 @@ import asyncio import contextvars -import gc -import time import unittest -from types import GenericAlias from unittest import mock -from asyncio import base_events from asyncio import tasks from test.test_asyncio import utils as test_utils -from test.test_asyncio.test_tasks import get_innermost_context -from test import support MOCK_ANY = mock.ANY |