[1.3.X] Fixed #16595 - Add pop() to session docs; thanks wilfred.

Backport of r16628 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16629 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Timo Graham 2011-08-20 19:23:16 +00:00
parent 3e5fc7ebb1
commit 329d80faab

View File

@ -132,6 +132,10 @@ You can edit it multiple times.
Example: ``fav_color = request.session.get('fav_color', 'red')``
.. method:: pop(key)
Example: ``fav_color = request.session.pop('fav_color')``
.. method:: keys
.. method:: items