[issue12390] urllib.parse.urlencode encoding lists as strings

2011-06-23 Thread Senthil Kumaran
Senthil Kumaran added the comment: Joseph, resolution applies for the bug not the process. tc. :) -- resolution: accepted -> invalid ___ Python tracker ___ _

[issue12390] urllib.parse.urlencode encoding lists as strings

2011-06-23 Thread Joesph
Joesph added the comment: Hrm, yes. 'Tis what I get for working while sick. -- resolution: invalid -> accepted ___ Python tracker ___ ___

[issue12390] urllib.parse.urlencode encoding lists as strings

2011-06-22 Thread Senthil Kumaran
Senthil Kumaran added the comment: I see you missed the doseq parameter which is applicable in this case. print(urllib.parse.urlencode(dictQuery, encoding='iso8859-1',doseq=True)) a=b&c=d&c=e&b=c -- nosy: +orsenthil resolution: -> invalid status: open -> closed __

[issue12390] urllib.parse.urlencode encoding lists as strings

2011-06-22 Thread Joesph
New submission from Joesph : """ Per the documentation urlencode is supposed to encode a structure returned by parse_qs back to a query string. However, urlencode appears to not be processing the lists associated with each key. Example: """ import urllib.parse dictQuery = urllib.parse.parse_qs(