T
Thomas Guettler
Hi,
I think the default of urlencode doseq being false is just
there to preserve the old behavior.
http://svn.python.org/view/python/b...ib/parse.py?rev=66199&sortby=date&view=markup
{{{
...
if not doseq:
# preserve old behavior
}}}
I guess no one want really wants this:
I think this is what most people want:
Should I open a bug against 3.0?
Thomas
I think the default of urlencode doseq being false is just
there to preserve the old behavior.
http://svn.python.org/view/python/b...ib/parse.py?rev=66199&sortby=date&view=markup
{{{
...
if not doseq:
# preserve old behavior
}}}
I guess no one want really wants this:
'key=%5B%27value1%27%2C+%27value2%27%5D'urllib.urlencode({'key': ['value1', 'value2']})
I think this is what most people want:
'key=value1&key=value2'urllib.urlencode({'key': ['value1', 'value2']}, doseq=True)
Should I open a bug against 3.0?
Thomas