summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_tree.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #29838 -- Fixed crash when combining Q objects with __in lookups and ↵aspalding2018-10-171-0/+3
| | | | | | lists. Regression in fc6528b25ab1834be1a478b405bf8f7ec5cf860c.
* Fixed #29643 -- Fixed crash when combining Q objects with __in lookups and ↵Mariusz Felisiak2018-08-081-0/+2
| | | | | lists. Regression in fc6528b25ab1834be1a478b405bf8f7ec5cf860c.
* Fixed #28629 -- Made tree.Node instances hashable.Mariusz Felisiak2017-09-281-0/+10
| | | | Regression in 508b5debfb16843a8443ebac82c1fb91f15da687 which added Node.__eq__().
* Refs #11964 -- Made Q objects deconstructible.Ian Foote2017-02-231-0/+16
|
* Fixed #22531 -- Added tree.Node.__repr__ and tests for the class.Moayad Mardini2014-05-161-0/+57
While Node class has a useful `__str__`, its `__repr__` is not that useful. Added a `__repr__` that makes use of the current `__str__`. This is especially useful since the more popular `Q` class inherits `tree.Node`. Also created new tests that cover most of `Node` class functionality.