Hello!

web.url("http://localhost:8080";, test =[1,2,3]) will output 'http://
localhost:8080?test=%5B1%2C+2%2C+3%5D'

Expected output is:  http://localhost:8080&test=1&test=2&test=3

In http.py: when calling web.changequery,  web.urlencode is called
with doseq=True, while in web.url function, doseq is False, which
means it is impossible to use list argument.

-- 
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/webpy?hl=en.

Reply via email to