(strng, start=0, screen_lines=0, pager_cmd=None)
| 127 | |
| 128 | # Override paging, so we don't require user interaction during the tests. |
| 129 | def nopage(strng, start=0, screen_lines=0, pager_cmd=None): |
| 130 | if isinstance(strng, dict): |
| 131 | strng = strng.get('text/plain', '') |
| 132 | print(strng) |
| 133 | |
| 134 | page.orig_page = page.pager_page |
| 135 | page.pager_page = nopage |
nothing calls this directly
no outgoing calls
no test coverage detected