# HG changeset patch # User David Douard # Date 1374667148 -7200 # Node ID 95e69c2d52a995c408961b3defc48249eabc5aad # Parent 75493f6ca586820a2d728c1861d8d84142b3009a [doc] one must now manipulate the req.session.data dict (closes #2842345) instead of deprecated get/set/del_session_data methods. diff -r 75493f6ca586 -r 95e69c2d52a9 doc/book/en/devweb/request.rst --- a/doc/book/en/devweb/request.rst Wed Jul 24 08:20:22 2013 +0200 +++ b/doc/book/en/devweb/request.rst Wed Jul 24 13:59:08 2013 +0200 @@ -30,11 +30,7 @@ * `Session data handling` - * `session_data()`, returns a dictionary containing all the session data - * `get_session_data(key, default=None)`, returns a value associated to the given - key or the value `default` if the key is not defined - * `set_session_data(key, value)`, assign a value to a key - * `del_session_data(key)`, suppress the value associated to a key + * `session.data` is the dictionnary of the session data; it can be manipulated like an ordinary Python dictionnary * `Edition` (utilities for edition control):