mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #24621 -- Fixed and documented SessionBase.pop's second argument
Changed SessionBase.pop's second argument to explicitly be default=None rather than *args since _session is always a dict. Thanks gabor for the report and Tim Graham for the review.
This commit is contained in:
parent
b295fcd19c
commit
872eb26f54
2 changed files with 4 additions and 4 deletions
|
@ -205,9 +205,9 @@ You can edit it multiple times.
|
|||
|
||||
Example: ``fav_color = request.session.get('fav_color', 'red')``
|
||||
|
||||
.. method:: pop(key)
|
||||
.. method:: pop(key, default=None)
|
||||
|
||||
Example: ``fav_color = request.session.pop('fav_color')``
|
||||
Example: ``fav_color = request.session.pop('fav_color', 'blue')``
|
||||
|
||||
.. method:: keys()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue