10000 Add `http.HTTPMethod` by AlexWaygood · Pull Request #7784 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Add http.HTTPMethod #7784

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 1 commit into from
May 7, 2022
Merged
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
22 changes: 21 additions & 1 deletion stdlib/http/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@ import sys
from enum import IntEnum
from typing_extensions import Literal

__all__ = ["HTTPStatus"]
if sys.version_info >= (3, 11):
from enum import StrEnum

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

class HTTPStatus(IntEnum):
@property
Expand Down Expand Up @@ -74,3 +80,17 @@ class HTTPStatus(IntEnum):
EARLY_HINTS: Literal[103]
IM_A_TEAPOT: Literal[418]
TOO_EARLY: Literal[425]

if sys.version_info >= (3, 11):
class HTTPMethod(StrEnum):
@property
def description(self) -> str: ...
CONNECT: str
DELETE: str
GET: str
HEAD: str
OPTIONS: str
PATCH: str
POST: str
PUT: str
TRACE: str
0