Make all elements in this tree none... This signals not to do any more layout.
(lb)
| 655 | |
| 656 | |
| 657 | def nonetree(lb): |
| 658 | ''' |
| 659 | Make all elements in this tree none... This signals not to do any more |
| 660 | layout. |
| 661 | ''' |
| 662 | if lb is not None: |
| 663 | if lb.parent is None: |
| 664 | # Clear the solver. Hopefully this garbage collects. |
| 665 | lb.solver.reset() |
| 666 | nonechildren(lb) |
| 667 | else: |
| 668 | nonetree(lb.parent) |
| 669 | |
| 670 | |
| 671 | def nonechildren(lb): |
nothing calls this directly
no test coverage detected