We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15f6b0a commit 42f7953Copy full SHA for 42f7953
1 file changed
stdlib/http/cookies.pyi
@@ -47,7 +47,7 @@ class Morsel(dict[str, Any], Generic[_T]):
47
class BaseCookie(dict[str, Morsel[_T]], Generic[_T]):
48
def __init__(self, input: _DataType | None = None) -> None: ...
49
def value_decode(self, val: str) -> tuple[_T, str]: ...
50
- def value_encode(self, val: _T) -> tuple[_T, str]: ...
+ def value_encode(self, val: _T) -> tuple[str, str]: ...
51
def output(self, attrs: list[str] | None = None, header: str = "Set-Cookie:", sep: str = "\r\n") -> str: ...
52
__str__ = output
53
def js_output(self, attrs: list[str] | None = None) -> str: ...
0 commit comments