()
| 24960 | |
| 24961 | |
| 24962 | def _main_entry_point(): |
| 24963 | # print('Restarting main as a new process...(needed in case you want to GitHub Upgrade)') |
| 24964 | # Relaunch using the same python interpreter that was used to run this function |
| 24965 | interpreter = sys.executable |
| 24966 | if 'pythonw' in interpreter: |
| 24967 | interpreter = interpreter.replace('pythonw', 'python') |
| 24968 | execute_py_file(__file__, parms=' '.join(sys.argv[1:]), interpreter_command=interpreter) |
| 24969 | |
| 24970 | |
| 24971 |
nothing calls this directly
no test coverage detected