[Python-checkins] r81272 - python/branches/py3k/Lib/urllib/parse.py

florent.xicluna python-checkins at python.org
Mon May 17 20:01:22 CEST 2010


Author: florent.xicluna
Date: Mon May 17 20:01:22 2010
New Revision: 81272

Log:
Inadvertently removed part of the comment in r81271.


Modified:
   python/branches/py3k/Lib/urllib/parse.py

Modified: python/branches/py3k/Lib/urllib/parse.py
==============================================================================
--- python/branches/py3k/Lib/urllib/parse.py	(original)
+++ python/branches/py3k/Lib/urllib/parse.py	Mon May 17 20:01:22 2010
@@ -341,7 +341,7 @@
         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:]:


More information about the Python-checkins mailing list