diff options
author | Viktor Kálmán <kviktor@users.noreply.github.com> | 2024-12-13 09:27:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-13 09:27:02 (GMT) |
commit | 11ff3286b7e821bf439bc7caa0fa712e3bc3846a (patch) | |
tree | b39cc95d26ed3dd7999d4430b98fdac1e5172574 /Doc | |
parent | 58942a07df8811afba9c58dc16c1aab244ccf27a (diff) | |
download | cpython-11ff3286b7e821bf439bc7caa0fa712e3bc3846a.zip cpython-11ff3286b7e821bf439bc7caa0fa712e3bc3846a.tar.gz cpython-11ff3286b7e821bf439bc7caa0fa712e3bc3846a.tar.bz2 |
link to the correct output method in documentation (#127857)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/http.cookies.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/http.cookies.rst b/Doc/library/http.cookies.rst index 4ce2e3c..ad37a0f 100644 --- a/Doc/library/http.cookies.rst +++ b/Doc/library/http.cookies.rst @@ -98,7 +98,7 @@ Cookie Objects .. method:: BaseCookie.output(attrs=None, header='Set-Cookie:', sep='\r\n') Return a string representation suitable to be sent as HTTP headers. *attrs* and - *header* are sent to each :class:`Morsel`'s :meth:`output` method. *sep* is used + *header* are sent to each :class:`Morsel`'s :meth:`~Morsel.output` method. *sep* is used to join the headers together, and is by default the combination ``'\r\n'`` (CRLF). |