Hi,
I think the default of urlencode doseq being false is just
there to preserve the old behavior.
{{{
...
if not doseq:
# preserve old behavior
}}}
I guess no one want really wants this:
'key=%5B%27valu e1%27%2C+%27val ue2%27%5D'
I think this is what most people want:
'key=value1&key =value2'
Should I open a bug against 3.0?
Thomas
--
Thomas Guettler, http://www.thomas-guettler.de/
E-Mail: guettli (*) thomas-guettler + de
I think the default of urlencode doseq being false is just
there to preserve the old behavior.
{{{
...
if not doseq:
# preserve old behavior
}}}
I guess no one want really wants this:
>>urllib.urlenc ode({'key': ['value1', 'value2']})
I think this is what most people want:
>>urllib.urlenc ode({'key': ['value1', 'value2']}, doseq=True)
Should I open a bug against 3.0?
Thomas
--
Thomas Guettler, http://www.thomas-guettler.de/
E-Mail: guettli (*) thomas-guettler + de