Skip to content

Commit

Permalink
bpo-40443: Remove unused imports in tests (GH-19805)
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner authored Apr 29, 2020
1 parent 69e802e commit 57572b1
Show file tree
Hide file tree
Showing 17 changed files with 4 additions and 20 deletions.
1 change: 0 additions & 1 deletion Lib/test/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import unittest
import operator
import struct
import sys
from test import support
from test.support.script_helper import assert_python_failure
from test.support.script_helper import assert_python_ok
Expand Down
3 changes: 0 additions & 3 deletions Lib/test/test_peg_parser.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import ast
import os
import sys
import _peg_parser as peg_parser
import unittest
from pathlib import PurePath
from typing import Any, Union, Iterable, Tuple
from textwrap import dedent
from test import support
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import subprocess
import sys
import unittest
import collections
from unittest import mock

from test import support
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_positional_only_arg.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import dis
import pickle
import unittest
import sys

from test.support import check_syntax_error, use_old_parser

Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_pstats.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from pstats import SortKey

import pstats
import time
import cProfile

class AddCallersTestCase(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_re.py
Original file line number Diff line number Diff line change
Expand Up @@ -2217,7 +2217,7 @@ def test_re_benchmarks(self):

def test_re_tests(self):
're_tests test suite'
from test.re_tests import tests, SUCCEED, FAIL, SYNTAX_ERROR
from test.re_tests import tests, FAIL, SYNTAX_ERROR
for t in tests:
pattern = s = outcome = repl = expected = None
if len(t) == 5:
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_regrtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"""

import contextlib
import faulthandler
import glob
import io
import os.path
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_string_literals.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import tempfile
import unittest
import warnings
from test.support import check_syntax_warning, use_old_parser
from test.support import use_old_parser


TEMPLATE = r"""# coding: %s
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_support.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import contextlib
import errno
import importlib
import io
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_syntax.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,6 @@
"""

import re
import sys
import unittest

from test import support
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_tempfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import io
import os
import pathlib
import signal
import sys
import re
import warnings
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import itertools
import textwrap
import unittest
import sys
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_tools/test_lll.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Tests for the lll script in the Tools/script directory."""

import os
import sys
import tempfile
from test import support
from test.test_tools import skip_if_missing, import_tool
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_tools/test_pathfix.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
import unittest
from test import support
from test.test_tools import import_tool, scriptsdir, skip_if_missing
from test.test_tools import scriptsdir, skip_if_missing


# need Tools/script/ directory: skip if run on Python installed on the system
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pickle
import re
import sys
from unittest import TestCase, main, skipUnless, SkipTest, skip
from unittest import TestCase, main, skipUnless, skip
from copy import copy, deepcopy

from typing import Any, NoReturn
Expand Down
1 change: 0 additions & 1 deletion Lib/test/test_unparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import random
import tokenize
import ast
import sys


def read_pyfile(filename):
Expand Down
2 changes: 0 additions & 2 deletions Lib/test/test_uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
import io
import os
import pickle
import shutil
import subprocess
import sys
import weakref
from unittest import mock
Expand Down

0 comments on commit 57572b1

Please sign in to comment.