From 019c903f20947ff24a72af607353309bc4db35d8 Mon Sep 17 00:00:00 2001 From: Francois Marier Date: Thu, 16 Sep 2021 22:19:35 -0700 Subject: [PATCH] Add 103 Early Hints See https://blog.cloudflare.com/early-hints/ for more info about this status code. --- src/httpcode/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/httpcode/__init__.py b/src/httpcode/__init__.py index c294841..9cbd7ab 100644 --- a/src/httpcode/__init__.py +++ b/src/httpcode/__init__.py @@ -41,6 +41,7 @@ 101: ('Switching Protocols', 'Switching to new protocol; obey Upgrade header'), 102: ('Processing', 'WebDAV; RFC 2518'), + 103: ('Early Hints', 'RFC 8297'), 200: ('OK', 'Request fulfilled, document follows'), 201: ('Created', 'Document created, URL follows'),