bpo-35202: Remove unused imports in Lib directory. (GH-10446)

parent 43a74abb
...@@ -16,7 +16,6 @@ __author__ = "Guido van Rossum <guido@python.org>" ...@@ -16,7 +16,6 @@ __author__ = "Guido van Rossum <guido@python.org>"
__all__ = ["Driver", "load_grammar"] __all__ = ["Driver", "load_grammar"]
# Python imports # Python imports
import codecs
import io import io
import os import os
import logging import logging
......
...@@ -13,7 +13,6 @@ fallback token code OP, but the parser needs the actual token code. ...@@ -13,7 +13,6 @@ fallback token code OP, but the parser needs the actual token code.
""" """
# Python imports # Python imports
import collections
import pickle import pickle
# Local imports # Local imports
......
import os import os
import sys
import signal import signal
from . import util from . import util
......
...@@ -3,11 +3,9 @@ ...@@ -3,11 +3,9 @@
import collections import collections
import copy import copy
import doctest import doctest
import keyword
import operator import operator
import pickle import pickle
from random import choice, randrange from random import choice, randrange
import re
import string import string
import sys import sys
from test import support from test import support
......
# Some simple queue module tests, plus some failure conditions # Some simple queue module tests, plus some failure conditions
# to ensure the Queue locks remain stable. # to ensure the Queue locks remain stable.
import collections
import itertools import itertools
import queue import queue
import random import random
import sys
import threading import threading
import time import time
import unittest import unittest
......
...@@ -10,7 +10,6 @@ import codecs ...@@ -10,7 +10,6 @@ import codecs
import gc import gc
import sysconfig import sysconfig
import locale import locale
import threading
# count the number of test runs, used to create unique # count the number of test runs, used to create unique
# strings to intern in test_intern() # strings to intern in test_intern()
......
...@@ -4,7 +4,6 @@ import random ...@@ -4,7 +4,6 @@ import random
from test import support from test import support
import _thread as thread import _thread as thread
import time import time
import sys
import weakref import weakref
from test import lock_tests from test import lock_tests
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment