mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
gh-131152: Remove unused imports from tests (part 2) (#131154)
This commit is contained in:
parent
50e9eba32c
commit
b2ca26875a
22 changed files with 6 additions and 28 deletions
|
@ -1,7 +1,7 @@
|
||||||
import concurrent.futures
|
import concurrent.futures
|
||||||
import unittest
|
import unittest
|
||||||
import inspect
|
import inspect
|
||||||
from threading import Thread, Barrier
|
from threading import Barrier
|
||||||
from unittest import TestCase
|
from unittest import TestCase
|
||||||
|
|
||||||
from test.support import threading_helper, Py_GIL_DISABLED
|
from test.support import threading_helper, Py_GIL_DISABLED
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import unittest
|
import unittest
|
||||||
import sys
|
|
||||||
from threading import Thread, Barrier
|
from threading import Thread, Barrier
|
||||||
from itertools import batched
|
from itertools import batched
|
||||||
from test.support import threading_helper
|
from test.support import threading_helper
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
import unittest
|
import unittest
|
||||||
from threading import Thread
|
from threading import Thread
|
||||||
from test.support import threading_helper
|
|
||||||
from operator import methodcaller
|
from operator import methodcaller
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,6 @@ import sys
|
||||||
import unittest
|
import unittest
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from test import support
|
|
||||||
from test.support import is_wasi, Py_DEBUG
|
from test.support import is_wasi, Py_DEBUG
|
||||||
from test.support.os_helper import (TESTFN, skip_unless_symlink,
|
from test.support.os_helper import (TESTFN, skip_unless_symlink,
|
||||||
can_symlink, create_empty_file, change_cwd)
|
can_symlink, create_empty_file, change_cwd)
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
from importlib import _bootstrap_external
|
|
||||||
from test.support import os_helper
|
from test.support import os_helper
|
||||||
import unittest
|
import unittest
|
||||||
import sys
|
import sys
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
import os
|
|
||||||
import pathlib
|
import pathlib
|
||||||
import py_compile
|
import py_compile
|
||||||
import shutil
|
|
||||||
import textwrap
|
import textwrap
|
||||||
import unittest
|
import unittest
|
||||||
import warnings
|
import warnings
|
||||||
|
|
|
@ -9,7 +9,6 @@ import importlib.util
|
||||||
from importlib import _bootstrap_external
|
from importlib import _bootstrap_external
|
||||||
import os
|
import os
|
||||||
import pathlib
|
import pathlib
|
||||||
import re
|
|
||||||
import string
|
import string
|
||||||
import sys
|
import sys
|
||||||
from test import support
|
from test import support
|
||||||
|
|
|
@ -489,7 +489,6 @@ class TestMiscellaneous(unittest.TestCase):
|
||||||
# valid. Furthermore LC_CTYPE=UTF is used by the UTF-8 locale coercing
|
# valid. Furthermore LC_CTYPE=UTF is used by the UTF-8 locale coercing
|
||||||
# during interpreter startup (on macOS).
|
# during interpreter startup (on macOS).
|
||||||
import _locale
|
import _locale
|
||||||
import os
|
|
||||||
|
|
||||||
self.assertEqual(locale._parse_localename('UTF-8'), (None, 'UTF-8'))
|
self.assertEqual(locale._parse_localename('UTF-8'), (None, 'UTF-8'))
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@ from urllib.request import pathname2url
|
||||||
from test.support import import_helper
|
from test.support import import_helper
|
||||||
from test.support import is_emscripten, is_wasi
|
from test.support import is_emscripten, is_wasi
|
||||||
from test.support import infinite_recursion
|
from test.support import infinite_recursion
|
||||||
from test.support import swap_attr
|
|
||||||
from test.support import os_helper
|
from test.support import os_helper
|
||||||
from test.support.os_helper import TESTFN, FakePath
|
from test.support.os_helper import TESTFN, FakePath
|
||||||
from test.test_pathlib import test_pathlib_abc
|
from test.test_pathlib import test_pathlib_abc
|
||||||
|
|
|
@ -1,11 +1,9 @@
|
||||||
import collections
|
|
||||||
import io
|
import io
|
||||||
import os
|
import os
|
||||||
import errno
|
import errno
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from pathlib._os import magic_open
|
from pathlib.types import _JoinablePath, _ReadablePath, _WritablePath
|
||||||
from pathlib.types import _PathParser, PathInfo, _JoinablePath, _ReadablePath, _WritablePath
|
|
||||||
import posixpath
|
import posixpath
|
||||||
|
|
||||||
from test.support.os_helper import TESTFN
|
from test.support.os_helper import TESTFN
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from test.support.import_helper import unload, CleanImport
|
from test.support.import_helper import unload
|
||||||
from test.support.warnings_helper import check_warnings, ignore_warnings
|
from test.support.warnings_helper import check_warnings
|
||||||
import unittest
|
import unittest
|
||||||
import sys
|
import sys
|
||||||
import importlib
|
import importlib
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
import os
|
|
||||||
from code import InteractiveConsole
|
from code import InteractiveConsole
|
||||||
from functools import partial
|
from functools import partial
|
||||||
from typing import Iterable
|
from typing import Iterable
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
import tempfile
|
import tempfile
|
||||||
import unittest
|
import unittest
|
||||||
import sys
|
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
from test import support
|
from test import support
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,6 @@ import os
|
||||||
import os.path
|
import os.path
|
||||||
import errno
|
import errno
|
||||||
import functools
|
import functools
|
||||||
import pathlib
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import random
|
import random
|
||||||
import string
|
import string
|
||||||
|
@ -32,7 +31,6 @@ except ImportError:
|
||||||
from test import support
|
from test import support
|
||||||
from test.support import os_helper
|
from test.support import os_helper
|
||||||
from test.support.os_helper import TESTFN, FakePath
|
from test.support.os_helper import TESTFN, FakePath
|
||||||
from test.support import warnings_helper
|
|
||||||
|
|
||||||
TESTFN2 = TESTFN + "2"
|
TESTFN2 = TESTFN + "2"
|
||||||
TESTFN_SRC = TESTFN + "_SRC"
|
TESTFN_SRC = TESTFN + "_SRC"
|
||||||
|
|
|
@ -19,7 +19,6 @@ from test import archiver_tests
|
||||||
from test import support
|
from test import support
|
||||||
from test.support import os_helper
|
from test.support import os_helper
|
||||||
from test.support import script_helper
|
from test.support import script_helper
|
||||||
from test.support import warnings_helper
|
|
||||||
|
|
||||||
# Check for our compression modules.
|
# Check for our compression modules.
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
"""Tests for thread-local bytecode."""
|
"""Tests for thread-local bytecode."""
|
||||||
import dis
|
|
||||||
import textwrap
|
import textwrap
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
# Python test set -- part 6, built-in types
|
# Python test set -- part 6, built-in types
|
||||||
|
|
||||||
from test.support import (
|
from test.support import (
|
||||||
run_with_locale, is_apple_mobile, cpython_only, no_rerun,
|
run_with_locale, cpython_only, no_rerun,
|
||||||
iter_builtin_types, iter_slot_wrappers,
|
|
||||||
MISSING_C_DOCSTRINGS,
|
MISSING_C_DOCSTRINGS,
|
||||||
)
|
)
|
||||||
import collections.abc
|
import collections.abc
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Check every path through every method of UserDict
|
# Check every path through every method of UserDict
|
||||||
|
|
||||||
from test import mapping_tests, support
|
from test import mapping_tests
|
||||||
import unittest
|
import unittest
|
||||||
import collections
|
import collections
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
from collections import UserList
|
from collections import UserList
|
||||||
from test import list_tests
|
from test import list_tests
|
||||||
import unittest
|
import unittest
|
||||||
from test import support
|
|
||||||
|
|
||||||
|
|
||||||
class UserListTest(list_tests.CommonTest):
|
class UserListTest(list_tests.CommonTest):
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
# Test the internal _wmi module on Windows
|
# Test the internal _wmi module on Windows
|
||||||
# This is used by the platform module, and potentially others
|
# This is used by the platform module, and potentially others
|
||||||
|
|
||||||
import time
|
|
||||||
import unittest
|
import unittest
|
||||||
from test import support
|
from test import support
|
||||||
from test.support import import_helper
|
from test.support import import_helper
|
||||||
|
|
|
@ -5,7 +5,6 @@ import pathlib
|
||||||
import pickle
|
import pickle
|
||||||
import stat
|
import stat
|
||||||
import sys
|
import sys
|
||||||
import time
|
|
||||||
import unittest
|
import unittest
|
||||||
import zipfile
|
import zipfile
|
||||||
import zipfile._path
|
import zipfile._path
|
||||||
|
|
|
@ -24,7 +24,6 @@ from test.support import script_helper, os_helper
|
||||||
from test.support import (
|
from test.support import (
|
||||||
findfile, requires_zlib, requires_bz2, requires_lzma,
|
findfile, requires_zlib, requires_bz2, requires_lzma,
|
||||||
captured_stdout, captured_stderr, requires_subprocess,
|
captured_stdout, captured_stderr, requires_subprocess,
|
||||||
is_emscripten
|
|
||||||
)
|
)
|
||||||
from test.support.os_helper import (
|
from test.support.os_helper import (
|
||||||
TESTFN, unlink, rmtree, temp_dir, temp_cwd, fd_count, FakePath
|
TESTFN, unlink, rmtree, temp_dir, temp_cwd, fd_count, FakePath
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue