(self, *args, **kwargs)
| 56 | self._repl.pager(output, title) |
| 57 | |
| 58 | def __call__(self, *args, **kwargs): |
| 59 | if self._repl.reevaluating: |
| 60 | with NopPydocPager(): |
| 61 | return super().__call__(*args, **kwargs) |
| 62 | else: |
| 63 | return super().__call__(*args, **kwargs) |
| 64 | |
| 65 | |
| 66 | # vim: sw=4 ts=4 sts=4 ai et |
nothing calls this directly
no test coverage detected