| Age | Commit message (Collapse) | Author |
|
Thanks Mark Gajdosik for the report and initial patch.
|
|
proxies.
|
|
options.
|
|
required mutually exclusive group is passed in options.
|
|
command directories."
This reverts commit ccc25bfe4f0964a00df3af6f91c2d9e20159a0c2.
https://groups.google.com/d/topic/django-developers/GVHMH2ciAnk/discussion
|
|
Command.requires_system_checks.
|
|
Instead of capturing the command output and discard it immediately,
tell the command not to log.
|
|
|
|
proxies.
|
|
exclusive groups.
|
|
parameter.
|
|
|
|
Use tempfile.TemporaryDirectory() in AdminScriptTestCase.setUp()
to create and destroy a temporary directory for each test. It removes
the need for individual tests to delete files.
For test classes that don't use the temporary directory, inherit from
SimpleTestCase.
|
|
|
|
|
|
|
|
|
|
|
|
management commands.
|
|
This partially reverts c3055242c81812278ebdc93dd109f30d2cbd1610.
Thanks Adam Johnson and Carlton Gibson for the reviews.
|
|
--pythonpath management command options.
|
|
|
|
Thanks Tim Graham for the fix.
|
|
options.
|
|
directories.
|
|
|
|
|
|
iter(dict) is equivalent to iter(dict.keys()).
|
|
argparse automatically sets the default value for store_true/false
arguments to its opposite.
|
|
|
|
These functions do nothing on Python 3.
|
|
Thanks Tim Graham for the review.
|
|
|
|
|
|
Thanks Tim Graham for the review.
|
|
|
|
|
|
|
|
Thanks Tim Graham for the review.
|
|
|
|
|
|
|
|
Thanks to Tim Graham for the review.
|
|
Thanks Tim Graham for the review.
|
|
Thanks KS Chan for the report and Tim Graham for the review.
|
|
deprecation timeline.
|
|
|
|
Forwardport of ae1d663b7913f6da233c55409c4973248372d302
from stable/1.8.x plus more.
|
|
backwards compatibility.
Using `BaseCommand.options_list` makes Django use the legacy optparse
parser, which does not set the verbosity attribute correctly. Now the
verbosity argument is always cast to int. Regression in 8568638 (#19973).
Initial report and patch from blueyed.
|
|
This is a performance optimization and also fixes test errors with the
upcoming merge of contrib tests into tests/. The tests failed on MySQL
because the models with GeometryField were being checked but the
non-GIS MySQL backend didn't know how to handle them.
|