Simply print unformatted text. This is the ultimate fallback.
(text)
| 1764 | tty.tcsetattr(fd, tty.TCSAFLUSH, old) |
| 1765 | |
| 1766 | def plainpager(text): |
| 1767 | """Simply print unformatted text. This is the ultimate fallback.""" |
| 1768 | sys.stdout.write(plain(_escape_stdout(text))) |
| 1769 | |
| 1770 | def describe(thing): |
| 1771 | """Produce a short description of the given thing.""" |
nothing calls this directly
no test coverage detected