(
self, result: AsyncGenerator[_T] | Coroutine[Any, Any, _T]
)
| 137 | |
| 138 | @overload |
| 139 | def iterate_spider_output( |
| 140 | self, result: AsyncGenerator[_T] | Coroutine[Any, Any, _T] |
| 141 | ) -> Deferred[_T]: ... |
| 142 | |
| 143 | @overload |
| 144 | def iterate_spider_output(self, result: _T) -> Iterable[Any]: ... |
nothing calls this directly
no test coverage detected