summaryrefslogtreecommitdiffstats
path: root/Lib/urllib/parse.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-05-17 18:01:22 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-05-17 18:01:22 (GMT)
commit0f78a94f445c48f5a96a77a1bb77ca88d7c50694 (patch)
tree2edc66944e3cacc8502fcef7ed5ca159b41e242f /Lib/urllib/parse.py
parentc7b8e8682e9dc8d4a5050c511a3e5f70a098553e (diff)
downloadcpython-0f78a94f445c48f5a96a77a1bb77ca88d7c50694.zip
cpython-0f78a94f445c48f5a96a77a1bb77ca88d7c50694.tar.gz
cpython-0f78a94f445c48f5a96a77a1bb77ca88d7c50694.tar.bz2
Inadvertently removed part of the comment in r81271.
Diffstat (limited to 'Lib/urllib/parse.py')
-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 33790da..b39fc25 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:]: