diff options
author | Irit Katriel <iritkatriel@yahoo.com> | 2020-10-18 21:06:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 21:06:34 (GMT) |
commit | 1a3f7c042a32fb813835243bd7f96e47c665bfdc (patch) | |
tree | b115c0e1011c068090718a41759217071ed481aa /Misc/NEWS.d | |
parent | 1040299e9283609f3de0f6e32a0d43458fe7f4f6 (diff) | |
download | cpython-1a3f7c042a32fb813835243bd7f96e47c665bfdc.zip cpython-1a3f7c042a32fb813835243bd7f96e47c665bfdc.tar.gz cpython-1a3f7c042a32fb813835243bd7f96e47c665bfdc.tar.bz2 |
[3.8] bpo-32498: Improve exception message on passing bytes to urllib.parse.unquote (GH-22746)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-10-18-19-22-39.bpo-32498.MoqSgo.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-10-18-19-22-39.bpo-32498.MoqSgo.rst b/Misc/NEWS.d/next/Library/2020-10-18-19-22-39.bpo-32498.MoqSgo.rst new file mode 100644 index 0000000..3083ded --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-10-18-19-22-39.bpo-32498.MoqSgo.rst @@ -0,0 +1,3 @@ +Clearer exception message when passing an argument of type bytes to +:func:`urllib.parse.unquote`. This is only for 3.8; in 3.9 and later this +function accepts bytes inputs as well. PR by Irit Katriel. |