Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-40443: Remove unused imports in the stdlib #19803

Merged
merged 1 commit into from
Apr 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Lib/asyncio/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import threading

from . import format_helpers
from . import exceptions


class Handle:
Expand Down
1 change: 0 additions & 1 deletion Lib/asyncio/sslproto.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
except ImportError: # pragma: no cover
ssl = None

from . import base_events
from . import constants
from . import protocols
from . import transports
Expand Down
1 change: 0 additions & 1 deletion Lib/bz2.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from builtins import open as _builtin_open
import io
import os
import warnings
import _compression
from threading import RLock

Expand Down
1 change: 0 additions & 1 deletion Lib/concurrent/futures/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@

__author__ = 'Brian Quinlan (brian@sweetapp.com)'

import atexit
import os
from concurrent.futures import _base
import queue
Expand Down
1 change: 0 additions & 1 deletion Lib/concurrent/futures/thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

__author__ = 'Brian Quinlan (brian@sweetapp.com)'

import atexit
from concurrent.futures import _base
import itertools
import queue
Expand Down
1 change: 0 additions & 1 deletion Lib/ctypes/test/test_loading.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import shutil
import subprocess
import sys
import sysconfig
import unittest
import test.support
from ctypes.util import find_library
Expand Down
2 changes: 0 additions & 2 deletions Lib/modulefinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
import os
import io
import sys
import types
import warnings


LOAD_CONST = dis.opmap['LOAD_CONST']
Expand Down
2 changes: 0 additions & 2 deletions Lib/plistlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,13 @@

import binascii
import codecs
import contextlib
import datetime
import enum
from io import BytesIO
import itertools
import os
import re
import struct
from warnings import warn
from xml.parsers.expat import ParserCreate


Expand Down
1 change: 0 additions & 1 deletion Lib/xml/dom/xmlbuilder.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Implementation of the DOM Level 3 'LS-Load' feature."""

import copy
import warnings
import xml.dom

from xml.dom.NodeFilter import NodeFilter
Expand Down
1 change: 0 additions & 1 deletion Lib/zipfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
XXX references to utf-8 need further investigation.
"""
import binascii
import functools
import importlib.util
import io
import itertools
Expand Down