| Age | Commit message (Collapse) | Author |
|
This also replaces assertQuerysetEqual() to
assertSequenceEqual()/assertCountEqual() where appropriate.
Co-authored-by: Peter Inglesby <peter.inglesby@gmail.com>
Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
|
|
elements.
Previously examples such as '<a/><b/>' would not match in '<a/><b/><c/>'.
|
|
Cleanups from addCleanup() are scheduled to happen in reverse order to
the order they are added (LIFO). Ensures each cleanup is executed from
the innermost to the outermost.
|
|
|
|
|
|
assertXMLEqual()/assertXMLNotEqual().
|
|
|
|
|
|
|
|
Support for the following tags was added: area, embed, param, track, and
wbr.
The full list of self closing tags is documented at:
https://html.spec.whatwg.org/#void-elements
|
|
class attribute.
|
|
|
|
|
|
Follow up to 253adc2b8a52982139d40c4f55b3fd446e1cb8f3.
|
|
|
|
Regression in 24959e48d949a20be969f649ece3576dbc7ce422.
|
|
disallowing queries.
Database features may require a connection to be established to determine
whether or not they are enabled.
|
|
tests.
Mocking connect as well as cursor methods makes sure an appropriate error
message is surfaced when running a subset of test attempting to access a
a disallowed database.
|
|
favor of databases.
|
|
|
|
|
|
|
|
an exception.
|
|
their query strings.
|
|
|
|
|
|
|
|
|
|
Thanks Tim Graham for the test part.
|
|
|
|
Python docs say, "it's usually not necessary to invoke these methods directly."
|
|
a tuple.
Regression in 17e661641ddaf8266e7430d83cfb2039abc55df7
|
|
|
|
These functions do nothing on Python 3.
|
|
|
|
Thanks Tim Graham for the review.
|
|
Thanks Tim Graham and Simon Charette for the reviews.
|
|
|
|
Per deprecation timeline.
|
|
Thanks to Josh Smeaton for the idea of implementing server-side cursors
in PostgreSQL from the iterator method, and Anssi Kääriäinen and Kevin
Turner for their previous work. Also Simon Charette and Tim Graham for
review.
|
|
|
|
|
|
inheritance.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Thanks to Tim for the review.
|