diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-05-11 23:18:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-11 23:18:13 (GMT) |
commit | 6098214b98f843fc8fb9d6042b0c9f96eb90957c (patch) | |
tree | 4b6de0bab5fdd16c8d8ae0f771a98981ddc3390c /Lib | |
parent | 1e4ca09d825cc8059bbf80c8137164816b84cfe7 (diff) | |
download | cpython-6098214b98f843fc8fb9d6042b0c9f96eb90957c.zip cpython-6098214b98f843fc8fb9d6042b0c9f96eb90957c.tar.gz cpython-6098214b98f843fc8fb9d6042b0c9f96eb90957c.tar.bz2 |
Fix import of HTTPError (GH-22304) (GH-26047)
Import HTTPError from urllib.error instead of urllib.request.
(cherry picked from commit 5fedf71439187f00c661b16b80d398b74b00390e)
Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/upload.py | 3 | ||||
-rw-r--r-- | Lib/distutils/tests/test_upload.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Lib/distutils/command/upload.py b/Lib/distutils/command/upload.py index 95e9fda..e0ecb65 100644 --- a/Lib/distutils/command/upload.py +++ b/Lib/distutils/command/upload.py @@ -9,7 +9,8 @@ import os import io import hashlib from base64 import standard_b64encode -from urllib.request import urlopen, Request, HTTPError +from urllib.error import HTTPError +from urllib.request import urlopen, Request from urllib.parse import urlparse from distutils.errors import DistutilsError, DistutilsOptionError from distutils.core import PyPIRCCommand diff --git a/Lib/distutils/tests/test_upload.py b/Lib/distutils/tests/test_upload.py index bca5516..74f0bc0 100644 --- a/Lib/distutils/tests/test_upload.py +++ b/Lib/distutils/tests/test_upload.py @@ -2,7 +2,7 @@ import os import unittest import unittest.mock as mock -from urllib.request import HTTPError +from urllib.error import HTTPError from test.support import run_unittest |