(*args, tab_size=4, undo=50)
| 1146 | if "pye_edit" not in globals().keys(): |
| 1147 | from pye import pye_edit |
| 1148 | def pye(*args, tab_size=4, undo=50): |
| 1149 | io_device = IO_DEVICE() |
| 1150 | ret = pye_edit(args, tab_size=tab_size, undo=undo, io_device=io_device) |
| 1151 | io_device.deinit_tty() |
| 1152 | return ret |
nothing calls this directly
no test coverage detected