Skip to content

Commit 8cad322

Browse files
authored
add _quote and _unquote to http.cookies stub (#4914)
1 parent eaf2945 commit 8cad322

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

stdlib/3/http/cookies.pyi

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ from typing import Any, Dict, Generic, List, Mapping, Optional, TypeVar, Union
44
_DataType = Union[str, Mapping[str, Union[str, Morsel[Any]]]]
55
_T = TypeVar("_T")
66

7+
def _quote(str: str) -> str: ...
8+
def _unquote(str: str) -> str: ...
9+
710
class CookieError(Exception): ...
811

912
class Morsel(Dict[str, Any], Generic[_T]):

0 commit comments

Comments
 (0)