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:
Adam Zapletal 2015-04-13 08:48:16 -05:00 committed by Tim Graham
parent b295fcd19c
commit 872eb26f54
2 changed files with 4 additions and 4 deletions

View file

@ -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()