(self)
| 871 | return iter(self.contents) |
| 872 | |
| 873 | def recursiveChildGenerator(self): |
| 874 | if not len(self.contents): |
| 875 | raise StopIteration |
| 876 | stopNode = self._lastRecursiveChild().next |
| 877 | current = self.contents[0] |
| 878 | while current is not stopNode: |
| 879 | yield current |
| 880 | current = current.next |
| 881 | |
| 882 | |
| 883 | # Next, a couple classes to represent queries and their results. |
nothing calls this directly
no test coverage detected