Compare TreeNodes A and B, and create a TreeDifference instance.
(a, b)
| 128 | |
| 129 | |
| 130 | def tree_difference(a, b): |
| 131 | """Compare TreeNodes A and B, and create a TreeDifference instance.""" |
| 132 | return _do_tree_difference(a, b, "", True) |
| 133 | |
| 134 | |
| 135 | def _do_tree_difference(a, b, parent_path, root=False): |
nothing calls this directly
no test coverage detected