MCPcopy Index your code
hub / github.com/csev/py4e / recursiveChildGenerator

Method recursiveChildGenerator

code/BeautifulSoup.py:873–880  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

_lastRecursiveChildMethod · 0.45

Tested by

no test coverage detected