django1/django/contrib/sessions/backends
Jannis Leidel fb590bfa9b Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin von Löwis.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16740 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-09-09 19:33:40 +00:00
..
__init__.py Fixed #2066: session data can now be stored in the cache or on the filesystem. This should be fully backwards-compatible (the database cache store is still the default). A big thanks to John D'Agostino for the bulk of this code. 2007-09-15 21:29:14 +00:00
base.py Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin von Löwis. 2011-09-09 19:33:40 +00:00
cache.py Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin von Löwis. 2011-09-09 19:33:40 +00:00
cached_db.py Fixed #6791: added a write-through cache session backend: session data is written through the cache to the database, but read from the cache for speed. Thanks to jhenry, mcroydon, and jdunck. 2009-01-10 22:18:14 +00:00
db.py Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for the work on the patch and Alex for reviewing. 2011-07-13 09:35:51 +00:00
file.py Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin von Löwis. 2011-09-09 19:33:40 +00:00
signed_cookies.py Fixed #16199 -- Added a Cookie based session backend. Many thanks to Eric Florenzano for his initial work and Florian Apollaner for reviewing. 2011-06-26 17:00:24 +00:00