-
-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect parsing of query parameters with %3B (;) inside #34
Comments
I don't follow where do you have two params? |
assert is failing due to len(u.query.items()) == 2 |
Got it. |
Well, that's how Not sure if this behavior should be fixed. |
But that's why ';' was encoded with %3B. len(yarl.URL('/?a=one%3Btwo').query) != len(urllib.parse.parse_qsl('a=one%3Btwo')) |
Sorry for my stupidity. |
np |
Any updates on this issue? aiohttp query parsing works incorrectly due to it ( |
i will push new release today |
Some test below:
But I'm getting 2 params.
The text was updated successfully, but these errors were encountered: