fix(statuses): Add HTTP 102 Processing

https://tools.ietf.org/html/rfc2518#section-10.1
This commit is contained in:
Florian Wendelborn 2019-05-22 18:43:59 +02:00 committed by GitHub
parent db37512a6e
commit fc91683fe3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,7 @@ def is_server_error(code):
HTTP_100_CONTINUE = 100
HTTP_101_SWITCHING_PROTOCOLS = 101
HTTP_102_PROCESSING = 102
HTTP_200_OK = 200
HTTP_201_CREATED = 201
HTTP_202_ACCEPTED = 202