I observed that a `[("param1", "http://example.com/?foo&bar"), ("param2", "hello")]` will result in a query string like following: `param1=http://example.com/?foo&bar¶m2=hello&` Seems wrong, since the `&` contained inside the tuple wasn't URL encoded.
I observed that a
[("param1", "http://example.com/?foo&bar"), ("param2", "hello")]will result in a query string like following:param1=http://example.com/?foo&bar¶m2=hello&Seems wrong, since the
&contained inside the tuple wasn't URL encoded.