(self, item)
| 76 | return self._process |
| 77 | |
| 78 | def __getattr__(self, item): |
| 79 | return getattr(self.initialize(), item) |
| 80 | |
| 81 | def communicate(self, *args, **kwargs): |
| 82 | # if pager process has not been created yet it means we didn't |
nothing calls this directly
no test coverage detected