http.cookiejar.MozillaCookieJar.header does not exist in 3.10+ (#8228)

This commit is contained in:
Alex Waygood
2022-07-03 17:42:14 +01:00
committed by GitHub
parent 60a3cee609
commit 0cff7fea71

View File

@@ -53,7 +53,8 @@ class FileCookieJar(CookieJar):
def revert(self, filename: str | None = ..., ignore_discard: bool = ..., ignore_expires: bool = ...) -> None: ...
class MozillaCookieJar(FileCookieJar):
header: ClassVar[str] # undocumented
if sys.version_info < (3, 10):
header: ClassVar[str] # undocumented
class LWPCookieJar(FileCookieJar):
def as_lwp_str(self, ignore_discard: bool = ..., ignore_expires: bool = ...) -> str: ... # undocumented