diogofriggo

Results 2 comments of diogofriggo

In my case I had this one set: python_config.config_profile = "python" which makes the .exe generated by PyOxidizer to not recognize the --multiprocessing-fork flag commenting it fixes this issue but...

I can successfully reproduce this issue. On interpreter.rs PyOxidizer makes this call into Python (https://github.com/indygreg/PyOxidizer/blob/main/pyembed/src/interpreter.rs#L576): spawn_module.getattr("spawn_main")?.call1((kwargs,))?; which calls spawn_main (https://github.com/python/cpython/blob/3.11/Lib/multiprocessing/spawn.py#L111) first argument being pipe_handle (which apparently is understood as a...