Kaydet (Commit) c049fca0 authored tarafından Florent Xicluna's avatar Florent Xicluna

Fix an oversight in r83294. unquote() should reject bytes. Issue #9301.

üst 62069d3c
......@@ -557,6 +557,7 @@ class UnquotingTests(unittest.TestCase):
"%s" % result)
self.assertRaises((TypeError, AttributeError), urllib.parse.unquote, None)
self.assertRaises((TypeError, AttributeError), urllib.parse.unquote, ())
self.assertRaises((TypeError, AttributeError), urllib.parse.unquote, b'')
def test_unquoting_badpercent(self):
# Test unquoting on bad percent-escapes
......
......@@ -338,7 +338,7 @@ def unquote(string, encoding='utf-8', errors='replace'):
unquote('abc%20def') -> 'abc def'.
"""
if string in (b'', ''):
if string == '':
return string
res = string.split('%')
if len(res) == 1:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment