You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added support for responses with non-standard HTTP Status Codes. Off by default, enabled with `allow_int_response_codes`.
4
+
5
+
# Problem
6
+
7
+
Currently if a response with a status code that does not exist in `http.HTTPStatusCode` a `ValueError` is raised. For example: `ValueError: 490 is not a valid HTTPStatus`.
8
+
9
+
# Edge Case
10
+
11
+
If a non-standard status code is received from an endpoint that doesn't define any responses with non-standard status codes the old behavior will appear.
0 commit comments