We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This prevents Flask 0.12 from running under the GAE development server on Windows. See this issue: pallets/flask#2139
Probably the pragmatic solution here is:
set_binary_mode = lambda x: x
set_binary_mode
set_binary_mode = lambda _: None
The text was updated successfully, but these errors were encountered:
691a60b
This fix is no good - still opening with Flask 0.12 and Click 6.7
Sorry, something went wrong.
Created App Engine issue, maybe they can push this better or provide a builtin workaround: https://issuetracker.google.com/issues/72043776
No branches or pull requests
This prevents Flask 0.12 from running under the GAE development server on Windows. See this issue: pallets/flask#2139
Probably the pragmatic solution here is:
set_binary_mode = lambda x: x
set_binary_mode
won't work in this case and useset_binary_mode = lambda _: None
?The text was updated successfully, but these errors were encountered: