django1/django/conf
Mariusz Felisiak 0c06819caa [4.0.x] Refs #33476 -- Used vertical hanging indentation for format lists with inline comments.
Lists with multiple values and comments per-line are reformatted
by Black to multiple lines with a single comment. For example:

DATE_INPUT_FORMATS =
    "%Y-%m-%d", "%m/%d/%Y", "%m/%d/%y",  # '2006-10-25', '10/25/2006', '10/25/06'
]

is reformatted to the:

DATE_INPUT_FORMATS =
    "%Y-%m-%d",
    "%m/%d/%Y",
    "%m/%d/%y",  # '2006-10-25', '10/25/2006', '10/25/06'
]

This reformats affected entries to multiple lines with corresponding
comments.

Backport of ca88caa103 from main
2022-02-01 15:14:17 +01:00
..
app_template Fixed #31007 -- Allowed specifying type of auto-created primary keys. 2020-12-15 11:25:46 +01:00
locale [4.0.x] Refs #33476 -- Used vertical hanging indentation for format lists with inline comments. 2022-02-01 15:14:17 +01:00
project_template Fixed #32873 -- Deprecated settings.USE_L10N. 2021-09-14 12:05:43 +02:00
urls Refs #31534 -- Removed django.conf.urls.url() per deprecation timeline. 2021-01-14 17:50:04 +01:00
__init__.py Fixed #32365 -- Made zoneinfo the default timezone implementation. 2021-09-16 12:11:05 +02:00
global_settings.py [4.0.x] Refs #33476 -- Used vertical hanging indentation for format lists with inline comments. 2022-02-01 15:14:17 +01:00