| Age | Commit message (Collapse) | Author |
|
Thanks to James Bennett for the initial implementation.
|
|
|
|
exclusive groups.
|
|
|
|
|
|
|
|
django.core.management.templates.
|
|
|
|
routers are installed by turning the error into a warning.
|
|
|
|
setting.
|
|
None is not valid for settings.FILE_UPLOAD_MAX_MEMORY_SIZE.
Always use SpooledTemporaryFile.
|
|
wsgi.file_wrapper.
|
|
|
|
Browsers often use multiple connections with Connection: keep-alive.
If --nothreading is specified, the WSGI server cannot accept new
connections until the old connection is closed, causing hangs.
Force Connection: close when --nothreading option is used.
|
|
localhost is non-ASCII.
Assisted by felixxm.
|
|
|
|
ADMINS/MANAGERS is set incorrectly.
|
|
commands.
|
|
Thanks Claude Paroz for assistance with translations.
|
|
parameter.
|
|
|
|
|
|
This adds an ASGI handler, asgi.py file for the default project layout,
a few async utilities and adds async-safety to many parts of Django.
|
|
|
|
sanitize_address().
|
|
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).
|
|
constraints names.
Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
|
|
|
|
|
|
|
|
ForeignKey(unique/primary_key=True).
|
|
|
|
|
|
This partly reverts commit 4400d8296d268f5a8523cd02ddc33b12219b2535.
|
|
|
|
|
|
Unused since 533532302ae842c95cf7294ef6cd7f3e2bfaca65.
|
|
|
|
|
|
|
|
verbosity 2+.
|
|
doesn't use one.
|
|
if None is cached.
|
|
Partially reverted 50b8493581fea3d7137dd8db33bac7008868d23a (refs #29654)
to avoid a crash when the user shell doesn't support non-ASCII characters.
|
|
glob.glob1() ignores missing paths.
|
|
|
|
Dicts preserve order since Python 3.6.
|
|
exist_ok=True).
|
|
|