| Age | Commit message (Collapse) | Author |
|
Thanks Tim Graham for the review.
|
|
|
|
nonexistent top-level package.
|
|
* Added logging of 500 responses for instantiated responses.
* Added logging of all 4xx and 5xx responses.
|
|
|
|
|
|
primary_key field.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Thanks Tim Graham and Mariusz Felisiak for the reviews.
|
|
|
|
QuerySet.bulk_create().
|
|
|
|
|
|
settings.DEBUG is False
|
|
|
|
verbosity.
|
|
COUNT is more expensive than EXISTS; use the latter when possible.
|
|
Instead of loading all QuerySet results in memory, count the number of
entries. This adds an extra query when list() or tuple() is called on the
choices (because both call __len__() then __iter__()) but uses less
memory since the QuerySet results won't be cached. In most cases, the
choices will only be iterated on, meaning that __len__() won't be called
and only one query will be executed.
|
|
|
|
|
|
|
|
Thanks Tim Graham for the fix.
|
|
choices.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
redirect_authenticated_user.
|
|
|
|
Obsolete since numpy 1.12.0.
|
|
can't be translated.
|
|
|
|
|
|
accessed and not set.
|
|
|
|
LIMIT/OFFSET.
|
|
|
|
|
|
|
|
|