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

This commit is contained in:
Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) 2018-11-10 12:52:02 +05:30 committed by Serhiy Storchaka
parent 43a74abb3a
commit b9498e2367
7 changed files with 0 additions and 9 deletions

View File

@ -16,7 +16,6 @@ __author__ = "Guido van Rossum <guido@python.org>"
__all__ = ["Driver", "load_grammar"]
# Python imports
import codecs
import io
import os
import logging

View File

@ -13,7 +13,6 @@ fallback token code OP, but the parser needs the actual token code.
"""
# Python imports
import collections
import pickle
# Local imports

View File

@ -1,5 +1,4 @@
import os
import sys
import signal
from . import util

View File

@ -3,11 +3,9 @@
import collections
import copy
import doctest
import keyword
import operator
import pickle
from random import choice, randrange
import re
import string
import sys
from test import support

View File

@ -1,10 +1,8 @@
# Some simple queue module tests, plus some failure conditions
# to ensure the Queue locks remain stable.
import collections
import itertools
import queue
import random
import sys
import threading
import time
import unittest

View File

@ -10,7 +10,6 @@ import codecs
import gc
import sysconfig
import locale
import threading
# count the number of test runs, used to create unique
# strings to intern in test_intern()

View File

@ -4,7 +4,6 @@ import random
from test import support
import _thread as thread
import time
import sys
import weakref
from test import lock_tests