- This issue is a follow-up of #3076 But it became a real problem if you try to set a query parameter within the `base_url`. Test case: ```py import httpx client = httpx.Client(base_url="https://httpbingo.org/get?data=1") print(client.base_url.query) response = client.get("") print(response.json()["args"]) ``` Expected output (as `data` is clearly defined as a query parameter) ```py b'data=1' {'data': ['1']} ``` Other valid output (dropping query parameters) ```py b'' {} ``` Actual output ```py b'data=1/' {'data': ['1/']} ```