diff options
author | Victor Stinner <vstinner@python.org> | 2025-03-13 10:55:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-13 10:55:23 +0100 |
commit | 73ab9e2eded4706ccdc0ab0286ff986bb552a1bf (patch) | |
tree | 8f0accd30c22a574b9ffb94b8d2ae34ba6c2f680 /Lib/test/test_asyncio/test_streams.py | |
parent | 0c6c52f49605f757c4a125ca195a2123bd930b93 (diff) | |
download | cpython-73ab9e2eded4706ccdc0ab0286ff986bb552a1bf.tar.gz cpython-73ab9e2eded4706ccdc0ab0286ff986bb552a1bf.zip |
gh-131152: Remove unused imports from tests (#131153)
Diffstat (limited to 'Lib/test/test_asyncio/test_streams.py')
-rw-r--r-- | Lib/test/test_asyncio/test_streams.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py index 673c6b46c64..0b47b2b91a1 100644 --- a/Lib/test/test_asyncio/test_streams.py +++ b/Lib/test/test_asyncio/test_streams.py @@ -1,15 +1,12 @@ """Tests for streams.py.""" import gc -import os import queue import pickle import socket -import sys import threading import unittest from unittest import mock -import warnings try: import ssl except ImportError: @@ -17,7 +14,7 @@ except ImportError: import asyncio from test.test_asyncio import utils as test_utils -from test.support import requires_subprocess, socket_helper +from test.support import socket_helper def tearDownModule(): |