Add back six.moves.urllib.parse.unquote (Python 2) (#4414)

This was accidentally removed in #4287.
This commit is contained in:
Jukka Lehtosalo
2020-08-07 17:56:54 +01:00
committed by GitHub
parent 57a1a3937a
commit 199b262f63

View File

@@ -5,6 +5,7 @@ from urllib import (
splitquery as splitquery,
splittag as splittag,
splituser as splituser,
unquote as unquote,
unquote as unquote_to_bytes,
unquote_plus as unquote_plus,
urlencode as urlencode,