index
:
delta/python-packages/django.git
1.8
15667
16682
24046
24215
24525
26176
3.2-man-page
4.0/make-zoneinfo-default-timezone-implementation-squashed
alex-patch-1
attic/boulder-oracle-sprint
attic/full-history
attic/generic-auth
attic/gis
attic/i18n
attic/magic-removal
attic/multi-auth
attic/multiple-db-support
attic/new-admin
attic/newforms-admin
attic/per-object-permissions
attic/queryset-refactor
attic/schema-evolution
attic/schema-evolution-ng
attic/search-api
attic/sqlalchemy
attic/unicode
c/29988-allow-f-strings
c/32409-async-tests-cannot-call-orm
c/append-slash-opt-out
c/replace-utcnow
c/use-bpo-extlink
dep0005
dep5
fix-cache-test
fix/remove-stray-file
issue/31570
link-to-code-of-conduct
main
make-zoneinfo-default-timezone-implementation
master
remove-unnecesary-if-wrap
selenium-updates
sir-sigurd-patch-1
soc2009/admin-ui
soc2009/http-wsgi-improvements
soc2009/i18n-improvements
soc2009/model-validation
soc2009/multidb
soc2009/test-improvements
soc2010/app-loading
soc2010/query-refactor
soc2010/test-refactor
stable/0.90.x
stable/0.91.x
stable/0.95.x
stable/0.96.x
stable/1.0.x
stable/1.1.x
stable/1.10.x
stable/1.11.x
stable/1.2.x
stable/1.3.x
stable/1.4.x
stable/1.5.x
stable/1.6.x
stable/1.7.x
stable/1.8.x
stable/1.9.x
stable/2.0.x
stable/2.1.x
stable/2.2.x
stable/3.0.x
stable/3.1.x
stable/3.2.x
stable/4.0.x
stable/4.1.x
stable/4.2.x
swap-closing-quote-period-in-admin-i18nable-literal
ticket-25055
ticket-31342
update-next-docs-version
github.com: django/django.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
contrib
/
sessions
/
backends
/
cache.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Refs #33476 -- Reformatted code with Black.
django-bot
2022-02-07
1
-8
/
+12
*
Fixed #28167 -- Fixed cache backend's SessionStore.exists() if session_key is...
Tim Graham
2017-05-03
1
-1
/
+1
*
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-25
1
-1
/
+1
*
Refs #23919 -- Removed most of remaining six usage
Claude Paroz
2017-01-18
1
-1
/
+0
*
Refs #21608 -- Fixed incorrect cache key in cache session backend's save().
Jon Dufresne
2016-04-04
1
-1
/
+1
*
Fixed #21608 -- Prevented logged out sessions being resurrected by concurrent...
Tore Lundqvist
2016-02-26
1
-2
/
+6
*
Fixed #22634 -- Made the database-backed session backends more extensible.
Sergey Kolosov
2015-08-27
1
-3
/
+5
*
Fixed #19324 -- Avoided creating a session record when loading the session.
Carl Meyer
2015-07-08
1
-2
/
+4
*
Removed unnecessary arguments in .get method calls
Piotr Jakimiak
2015-05-13
1
-1
/
+1
*
Sorted imports with isort; refs #23860.
Tim Graham
2015-02-06
1
-1
/
+1
*
Fixed #23812 -- Changed django.utils.six.moves.xrange imports to range
Michael Hall
2014-12-13
1
-2
/
+2
*
Fixed #21012 -- New API to access cache backends.
Curtis Maloney
2013-11-23
1
-2
/
+2
*
Fixed #17083 -- Allowed sessions to use non-default cache.
Aymeric Augustin
2012-10-31
1
-2
/
+3
*
Fixed #14093 -- Improved error message in the cache session backend.
Aymeric Augustin
2012-10-28
1
-1
/
+3
*
Fixed #18194 -- Expiration of file-based sessions
Aymeric Augustin
2012-10-28
1
-0
/
+4
*
[py3] Added Python 3 compatibility for xrange.
Aymeric Augustin
2012-07-22
1
-0
/
+1
*
Fixed #17810 (again). Catch session key errors.
Aymeric Augustin
2012-03-23
1
-4
/
+3
*
Fixed an incompatibility with Python 2.5 in the changes done in r17795. Refs ...
Jannis Leidel
2012-03-23
1
-1
/
+2
*
Fixed #17810. Catch session key errors.
Paul McMillan
2012-03-23
1
-1
/
+7
*
Fixed #11555 -- Made SessionBase.session_key read-only. Cleaned up code sligh...
Aymeric Augustin
2011-11-27
1
-7
/
+11
*
Corrected an issue which could allow attackers to manipulate session data usi...
Russell Keith-Magee
2011-09-10
1
-4
/
+6
*
Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin vo...
Jannis Leidel
2011-09-09
1
-3
/
+1
*
Fixed #9548 -- Correctly detect existence of empty sessions with cache backend.
Malcolm Tredinnick
2009-03-01
1
-1
/
+1
*
Fixed #8311 -- Avoid an infinite loop with session key generation when using
Malcolm Tredinnick
2008-08-27
1
-1
/
+7
*
Fixed #8351 -- Fixed the returned value when we attempt to load a cache-backe...
Malcolm Tredinnick
2008-08-16
1
-0
/
+1
*
Made a few small tweaks to reduce persistent storage accesses in the session
Malcolm Tredinnick
2008-08-15
1
-0
/
+2
*
Fixed #8314 -- Fixed an infinite loop caused when submitting a session key (via
Malcolm Tredinnick
2008-08-14
1
-1
/
+2
*
Implemented a flush() method on sessions that cleans out the session and
Malcolm Tredinnick
2008-08-14
1
-1
/
+3
*
Added guaranteed atomic creation of new session objects. Slightly backwards
Malcolm Tredinnick
2008-08-14
1
-4
/
+23
*
Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...
Adrian Holovaty
2008-07-22
1
-2
/
+0
*
Several Django styling fixes in the `contrib.sessions` app.
Gary Wilson Jr
2008-06-23
1
-1
/
+2
*
Fixed #2548: added get/set_expiry methods to session objects. Thanks, Amit Up...
Jacob Kaplan-Moss
2008-06-07
1
-4
/
+4
*
Fixed #2066: session data can now be stored in the cache or on the filesystem...
Jacob Kaplan-Moss
2007-09-15
1
-0
/
+26