You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromfurlimportfurldefurl() ->furl:
returnfurl("http://foo.com/?a=1&b=2")
print(url().set({"a": 3})) # http://foo.com/?a=3print(url().add({"a": 3})) # http://foo.com/?a=1&b=2&a=3# i would like to be able do this in one method:print(url().remove(["a"]).add({"a": 3})) # http://foo.com/?b=2&a=3
the current behavior of add where it supports multiple query params with the same value seems like an edge case imo
The text was updated successfully, but these errors were encountered:
the current behavior of
add
where it supports multiple query params with the same value seems like an edge case imoThe text was updated successfully, but these errors were encountered: