(self)
| 254 | self.iterator = wsgi_iterator |
| 255 | |
| 256 | def __iter__(self): |
| 257 | # We want to make sure __iter__ is called |
| 258 | return IteratorWrapper(self.iterator, None) |
| 259 | |
| 260 | class IteratorWrapper: |
| 261 |
nothing calls this directly
no test coverage detected