summaryrefslogtreecommitdiffstats
path: root/Lib/urllib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-21 10:59:28 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-21 10:59:28 (GMT)
commit8cbd3df3ce75699cdc64d0d1bd903af43da43fa0 (patch)
treee23173f5414db6ab26f925cc1824c2c6890c6723 /Lib/urllib
parent47bdc40352b06cc28ed91c988dbd65bb3b298471 (diff)
downloadcpython-8cbd3df3ce75699cdc64d0d1bd903af43da43fa0.zip
cpython-8cbd3df3ce75699cdc64d0d1bd903af43da43fa0.tar.gz
cpython-8cbd3df3ce75699cdc64d0d1bd903af43da43fa0.tar.bz2
Issue #28992: Use bytes.fromhex().
Diffstat (limited to 'Lib/urllib')
-rw-r--r--Lib/urllib/parse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py
index 958767a..1d08730 100644
--- a/Lib/urllib/parse.py
+++ b/Lib/urllib/parse.py
@@ -574,7 +574,7 @@ def unquote_to_bytes(string):
# if the function is never called
global _hextobyte
if _hextobyte is None:
- _hextobyte = {(a + b).encode(): bytes([int(a + b, 16)])
+ _hextobyte = {(a + b).encode(): bytes.fromhex(a + b)
for a in _hexdig for b in _hexdig}
for item in bits[1:]:
try: