| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
In these cases Black produces unexpected results, e.g.
def make_random_password(
self,
length=10,
allowed_chars='abcdefghjkmnpqrstuvwxyz' 'ABCDEFGHJKLMNPQRSTUVWXYZ' '23456789',
):
or
cursor.execute("""
SELECT ...
""",
[table name],
)
|
|
|
|
Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
|
|
This improves accessibility for screen reader users.
|
|
|
|
|
|
|
|
ClearableFileInput.
|
|
|
|
docstring.
|
|
data exists.
|
|
|
|
SelectDateWidget."
This reverts commit f038214d917c982613f5a15db8dfe325b1f7479b.
The initial issue was incorrect. Django 2.2, and before, did not
generate invalid HTML as reported. With f03821 in place invalid HTML
was generated.
Thanks to Kevin Brown for follow-up report and investigation.
|
|
* assertIsNone()/assertIsNotNone() instead of comparing to None.
* assertLess() for < comparisons.
* assertIs() for 'is' expressions.
* assertIsInstance() for isinstance() expressions.
* rounding of assertAlmostEqual() for round() expressions.
* assertIs(..., True/False) instead of comparing to True/False.
* assertIs()/assertIsNot() for ==/!= comparisons.
* assertNotEqual() for == comparisons.
* assertTrue()/assertFalse() instead of comparing to True/False.
|
|
|
|
USE_L10N is disabled.
|
|
placeholder is required for "select" with "required" attribute.
|
|
html.escape()/unescape().
|
|
|
|
|
|
SelectDateWidget.value_from_datadict().
|
|
choice widgets.
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01.
|
|
CheckboxSelectMultiple with MultiWidget.
|
|
attribute is added by JavaScript.
Thanks Tim Graham for the initial patch.
|
|
|
|
|
|
syntax.
|
|
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01.
|
|
renderer argument.
Per deprecation timeline.
|
|
|
|
MultiWidget.
|
|
context.
|
|
attrs.html widget template.
|
|
|
|
non-grouped options.
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01.
|
|
Obsolete since b52c73008a9d67e9ddbb841872dc15cdd3d6ee01.
|
|
|
|
multiple_input.html.
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01
|
|
Thanks Tim Graham for the review.
|
|
|
|
|
|
|
|
Regression in b52c73008a9d67e9ddbb841872dc15cdd3d6ee01.
Thanks Tim Graham for the review.
|
|
SplitDateTimeWidget subwidgets.
Thanks Tim Graham and Nick Pope for review.
|
|
with a default.
|