diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-13 14:28:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 14:28:41 (GMT) |
commit | 259dd71c32a42708a2800c72898e2664a33fda9c (patch) | |
tree | 5c9a1e367ccc37526054a30867a14db9ad45430a /Lib/urllib | |
parent | 65ac273280fa909f42dd78f3da634e6669e2b63d (diff) | |
download | cpython-259dd71c32a42708a2800c72898e2664a33fda9c.zip cpython-259dd71c32a42708a2800c72898e2664a33fda9c.tar.gz cpython-259dd71c32a42708a2800c72898e2664a33fda9c.tar.bz2 |
gh-84623: Remove unused imports in stdlib (#93773)
Diffstat (limited to 'Lib/urllib')
-rw-r--r-- | Lib/urllib/parse.py | 1 | ||||
-rw-r--r-- | Lib/urllib/request.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py index d70a694..fd6d9f4 100644 --- a/Lib/urllib/parse.py +++ b/Lib/urllib/parse.py @@ -30,7 +30,6 @@ test_urlparse.py provides a good indicator of parsing behavior. from collections import namedtuple import functools import re -import sys import types import warnings diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index 6d580a4..c352fb2 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -88,7 +88,6 @@ import hashlib import http.client import io import os -import posixpath import re import socket import string |