Skip to content

Add http.HTTPMethod for 3.11 #7799

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

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
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
19 changes: 18 additions & 1 deletion stdlib/http/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,24 @@ import sys
from enum import IntEnum
from typing_extensions import Literal

__all__ = ["HTTPStatus"]
if sys.version_info >= (3, 11):
__all__ = ["HTTPStatus", "HTTPMethod"]
else:
__all__ = ["HTTPStatus"]

if sys.version_info >= (3, 11):
from enum import StrEnum

class HTTPMethod(StrEnum):
GET: str
HEAD: str
POST: str
PUT: str
DELETE: str
CONNECT: str
OPTIONS: str
TRACE: str
PATCH: str

class HTTPStatus(IntEnum):
@property
Expand Down