| Age | Commit message (Collapse) | Author |
|
compliant.
|
|
means no match.
|
|
Co-Authored-By: Arman <armansabyrov@gmail.com>
|
|
|
|
UserAdmin with a custom user model.
|
|
decorator.
|
|
|
|
|
|
|
|
|
|
Added to mirror the existing User.get_group_permissions().
|
|
|
|
migrations.
|
|
|
|
|
|
context values in PasswordResetView.
|
|
reset URLs.
Co-authored-by: Tim Givois <tim.givois.mendez@gmail.com>
|
|
|
|
|
|
comments.
|
|
optimization docs.
|
|
SessionStore.get_session_cookie_age().
|
|
|
|
|
|
|
|
|
|
in logging docs.
|
|
|
|
|
|
time.monotonic() available from Python 3.3:
- Nicely communicates a narrow intent of "get a local system monotonic
clock time" instead of possible "get a not necessarily accurate Unix
time stamp because it needs to be communicated to outside of this
process/machine" when time.time() is used.
- Its result isn't affected by the system clock updates.
There are two classes of time.time() uses changed to time.monotonic()
by this change:
- measuring time taken to run some code.
- setting and checking a "close_at" threshold for for persistent db
connections (django/db/backends/base/base.py).
|
|
|
|
|
|
|
|
Sphinx interprets some "%[a-z]" in SQL statements as a
"Literal.String.Interpol" which leads to incorrect highlighting.
|
|
comments and hints.
|
|
|
|
|
|
|
|
on language cookies.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Partially reverted 50b8493581fea3d7137dd8db33bac7008868d23a (refs #29654)
to avoid a crash when the user shell doesn't support non-ASCII characters.
|