(self)
| 55 | return getattr(self._stream, item) |
| 56 | |
| 57 | def flush(self): |
| 58 | # if stream has not been created yet there is no reason to create it |
| 59 | # just to call `flush` |
| 60 | if self._stream is not None: |
| 61 | return self._stream.flush() |
| 62 | |
| 63 | |
| 64 | class LazyPager: |
no outgoing calls