8000 gh-102247: http: support rfc9110 status codes by mbeijen · Pull Request #117611 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-102247: http: support rfc9110 status codes #117611

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

Merged
merged 3 commits into from
Apr 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix wsgiref test
  • Loading branch information
mbeijen committed Apr 9, 2024
commit e1aa8c9906d87b4c543a5ab635c25518255dbbd0
2 changes: 1 addition & 1 deletion Lib/test/test_wsgiref.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def test_environ(self):
def test_request_length(self):
out, err = run_amock(data=b"GET " + (b"x" * 65537) + b" HTTP/1.0\n\n")
self.assertEqual(out.splitlines()[0],
b"HTTP/1.0 414 Request-URI Too Long")
b"HTTP/1.0 414 URI Too Long")

def test_validated_hello(self):
out, err = run_amock(validator(hello_app))
Expand Down
0