-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
request.GET ignores blank values #388
Comments
should pass https://github.com/KeepSafe/aiohttp/blob/master/aiohttp/web_reqrep.py#L184 |
As result I suggest to close the issue as wontfix. |
@asvetlov I am okay with this, but is it possible to assign a custom request class while creating application? so that I can inherit the request class, define my own stuff, including a override GET with blank values. |
@victorlin I don't want to allow web.Request customization. At least for now.
|
When you pass blank query value like
then
request.GET
will be empty instead of having{'foo': ''}
The text was updated successfully, but these errors were encountered: