Skip to content

Commit

Permalink
[3.0.x] Refs #6657 -- Corrected HttpResponse.set_cookie()/set_signed_…
Browse files Browse the repository at this point in the history
…cookie() signatures in docs.

Backport of 15c5875 from master
  • Loading branch information
danidee10 authored and felixxm committed Dec 13, 2019
1 parent 6cb3041 commit 3ab7de0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/ref/request-response.txt
Expand Up @@ -805,7 +805,7 @@ Methods

Sets a header unless it has already been set.

.. method:: HttpResponse.set_cookie(key, value='', max_age=None, expires=None, path='/', domain=None, secure=None, httponly=False, samesite=None)
.. method:: HttpResponse.set_cookie(key, value='', max_age=None, expires=None, path='/', domain=None, secure=False, httponly=False, samesite=None)

Sets a cookie. The parameters are the same as in the
:class:`~http.cookies.Morsel` cookie object in the Python standard library.
Expand Down Expand Up @@ -844,7 +844,7 @@ Methods
attempt to store a cookie of more than 4096 bytes, but many browsers
will not set the cookie correctly.

.. method:: HttpResponse.set_signed_cookie(key, value, salt='', max_age=None, expires=None, path='/', domain=None, secure=None, httponly=False, samesite=None)
.. method:: HttpResponse.set_signed_cookie(key, value, salt='', max_age=None, expires=None, path='/', domain=None, secure=False, httponly=False, samesite=None)

Like :meth:`~HttpResponse.set_cookie()`, but
:doc:`cryptographic signing </topics/signing>` the cookie before setting
Expand Down

0 comments on commit 3ab7de0

Please sign in to comment.