(args=None, locals_=None, banner=None)
| 116 | |
| 117 | |
| 118 | def main(args=None, locals_=None, banner=None): |
| 119 | translations.init() |
| 120 | config = Config(default_config_path()) |
| 121 | module_gatherer = ModuleGatherer() |
| 122 | while module_gatherer.find_coroutine(): |
| 123 | pass |
| 124 | with SimpleRepl(config) as r: |
| 125 | r.width = 50 |
| 126 | r.height = 10 |
| 127 | while True: |
| 128 | r.print_output() |
| 129 | r.get_input() |
| 130 | |
| 131 | |
| 132 | if __name__ == "__main__": |
no test coverage detected