From: Florent Xicluna Date: Mon, 17 May 2010 18:01:22 +0000 (+0000) Subject: Inadvertently removed part of the comment in r81271. X-Git-Tag: v3.2a1~767 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f78a94f445c48f5a96a77a1bb77ca88d7c50694;p=thirdparty%2FPython%2Fcpython.git Inadvertently removed part of the comment in r81271. --- diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py index 33790da3f994..b39fc25eb845 100644 --- a/Lib/urllib/parse.py +++ b/Lib/urllib/parse.py @@ -341,7 +341,7 @@ def unquote(string, encoding='utf-8', errors='replace'): encoding = 'utf-8' if errors is None: errors = 'replace' - # pct_sequence: contiguous sequence of percent-encoded bytes + # pct_sequence: contiguous sequence of percent-encoded bytes, decoded pct_sequence = b'' string = res[0] for item in res[1:]: