(self)
| 2220 | self._functions = iter(functions) |
| 2221 | |
| 2222 | def __iter__(self): |
| 2223 | while True: |
| 2224 | while len(self._func_queue) < self._preload_limit: |
| 2225 | try: |
| 2226 | self._func_queue.append(_function.AdvancedFunctionAnalysisDataRequestor(next(self._functions))) |
| 2227 | except StopIteration: |
| 2228 | break |
| 2229 | if not self._func_queue: |
| 2230 | break |
| 2231 | yield self._func_queue.popleft().function |
| 2232 | |
| 2233 | |
| 2234 | class MemoryMap: |
nothing calls this directly
no test coverage detected