Adjust set_start_method decision, changing fork to forkserver for platforms other than win32, darwin

This commit is contained in:
James R. Barlow
2025-06-13 01:22:01 -07:00
parent 7ea940a3a6
commit 332369f1b0
+1 -1
View File
@@ -78,6 +78,6 @@ def run(args=None):
if __name__ == '__main__':
multiprocessing.freeze_support()
if os.name == 'posix':
if sys.platform not in ('win32', 'darwin'):
multiprocessing.set_start_method('forkserver')
sys.exit(run())