diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-02-23 22:11:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-23 22:11:59 (GMT) |
commit | 71b75f6f15ea2e8ffe59558bf2ec87b089833b40 (patch) | |
tree | 1beb0993d8f4d12f5f38c3593ee2b2063d716362 | |
parent | 4ac657a62fdc3d3d263d7bdd62d0d24c3b028bb7 (diff) | |
download | cpython-71b75f6f15ea2e8ffe59558bf2ec87b089833b40.zip cpython-71b75f6f15ea2e8ffe59558bf2ec87b089833b40.tar.gz cpython-71b75f6f15ea2e8ffe59558bf2ec87b089833b40.tar.bz2 |
[3.12] Update http.cookiejar document for cookie object attributes (GH-101885) (#115833)
Update http.cookiejar document for cookie object attributes (GH-101885)
(cherry picked from commit a3859422d15d98892fd53499916bd424f841404f)
Co-authored-by: NewUserHa <32261870+NewUserHa@users.noreply.github.com>
-rw-r--r-- | Doc/library/http.cookiejar.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/http.cookiejar.rst b/Doc/library/http.cookiejar.rst index 12a6d76..2fe188b 100644 --- a/Doc/library/http.cookiejar.rst +++ b/Doc/library/http.cookiejar.rst @@ -649,6 +649,11 @@ internal consistency, so you should know what you're doing if you do that. :const:`None`. +.. attribute:: Cookie.domain + + Cookie domain (a string). + + .. attribute:: Cookie.path Cookie path (a string, eg. ``'/acme/rocket_launchers'``). |