[3.12] Explicitly import `urllib.error` in `urllib.robotparser` (GH-128737) (#128794)
https://github.com/python/cpython/commit/552b2a0f6eef913f5de8d6c9927296e7c30... commit: 552b2a0f6eef913f5de8d6c9927296e7c30198f1 branch: 3.12 author: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> committer: picnixz <10796600+picnixz@users.noreply.github.com> date: 2025-01-13T16:32:38Z summary: [3.12] Explicitly import `urllib.error` in `urllib.robotparser` (GH-128737) (#128794) Explicitly import `urllib.error` in `urllib.robotparser` (GH-128737) (cherry picked from commit 53e8942e6938df3a32b783815f1bd4b76eed3dd0) Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> files: M Lib/urllib/robotparser.py diff --git a/Lib/urllib/robotparser.py b/Lib/urllib/robotparser.py index 24ee198c355f56..409f2b2e48de6e 100644 --- a/Lib/urllib/robotparser.py +++ b/Lib/urllib/robotparser.py @@ -11,6 +11,7 @@ """ import collections +import urllib.error import urllib.parse import urllib.request
participants (1)
-
picnixz