Quit the REPL. Repl saved by atexit handler.
()
| 179 | atexit.register(save_history) |
| 180 | |
| 181 | def quit(): |
| 182 | """ |
| 183 | Quit the REPL. Repl saved by atexit handler. |
| 184 | """ |
| 185 | globalThis.python.exit() # need for python.exit.code in require.py |
| 186 | |
| 187 | def sigint_handler(signum, frame): |
| 188 | """ |