We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaf2945 commit 8cad322Copy full SHA for 8cad322
stdlib/3/http/cookies.pyi
@@ -4,6 +4,9 @@ from typing import Any, Dict, Generic, List, Mapping, Optional, TypeVar, Union
4
_DataType = Union[str, Mapping[str, Union[str, Morsel[Any]]]]
5
_T = TypeVar("_T")
6
7
+def _quote(str: str) -> str: ...
8
+def _unquote(str: str) -> str: ...
9
+
10
class CookieError(Exception): ...
11
12
class Morsel(Dict[str, Any], Generic[_T]):
0 commit comments