Skip to content
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

stdlib wsgiref requires argument for read() #477

Merged
merged 4 commits into from
Feb 25, 2020
Merged

stdlib wsgiref requires argument for read() #477

merged 4 commits into from
Feb 25, 2020

Commits on Feb 21, 2020

  1. stdlib wsgiref requires argument for read()

    PEP3333 says:
    
    > A server should allow read() to be called without an argument, and
    > return the remainder of the client's input stream.
    
    However, Python standard library `wsgiref` does not allow calling `read`
    without arguments. Falcon test client `falcon.testing.TestClient` uses
    `wsgiref` - therefore content length should be passed an argument to
    `read`.
    Sami Salonen committed Feb 21, 2020
    Configuration menu
    Copy the full SHA
    cf09a90 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2020

  1. Add author.

    Sami Salonen committed Feb 24, 2020
    Configuration menu
    Copy the full SHA
    e57c22d View commit details
    Browse the repository at this point in the history
  2. Add test for cf09a90.

    Sami Salonen committed Feb 24, 2020
    Configuration menu
    Copy the full SHA
    58ac9f2 View commit details
    Browse the repository at this point in the history
  3. Remove unneeded argument.

    Sami Salonen committed Feb 24, 2020
    Configuration menu
    Copy the full SHA
    9b86165 View commit details
    Browse the repository at this point in the history