]> granicus.if.org Git - python/commitdiff
Inadvertently removed part of the comment in r81271.
authorFlorent Xicluna <florent.xicluna@gmail.com>
Mon, 17 May 2010 18:01:22 +0000 (18:01 +0000)
committerFlorent Xicluna <florent.xicluna@gmail.com>
Mon, 17 May 2010 18:01:22 +0000 (18:01 +0000)
Lib/urllib/parse.py

index 33790da3f9943e67759890f00d338a1bf167ba9c..b39fc25eb845c830573d6616c3a3d7782806e25d 100644 (file)
@@ -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:]: