| Age | Commit message (Collapse) | Author |
|
integer.
|
|
HttpResponse.delete_cookie().
Cookies with the "SameSite" flag set to None and without the "secure"
flag will be soon rejected by latest browser versions.
This affects sessions and messages cookies.
|
|
|
|
Thanks Florian Apolloner and Carlton Gibson for reviews.
|
|
* 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.
|
|
2038 is chosen for compatibility with 32-bit systems.
|
|
Thanks Alex Gaynor for contributing to the patch.
|
|
__Secure/Host prefixes.
|
|
|