Bug report
Bug description:
Bug in def main(): https://github.com/python/cpython/blob/main/Lib/multiprocessing/forkserver.py#L167
The param sys_path is ignored. Result: ModuleNotFoundError for preloaded modules.
a) Using sys_path fixes this issue
b) Maybe better remove "pass" and report and error to simplify problem solving
if preload:
if '__main__' in preload and main_path is not None:
process.current_process()._inheriting = True
try:
spawn.import_main_path(main_path)
finally:
del process.current_process()._inheriting
+ if sys_path:
+ sys.path = sys_path
for modname in preload:
try:
__import__(modname)
except ImportError:
- pass
+ warnings.warn('forkserver: preloading module failed %s' % modname)
CPython versions tested on:
3.12
Operating systems tested on:
No response
Linked PRs
Bug report
Bug description:
Bug in
def main(): https://github.com/python/cpython/blob/main/Lib/multiprocessing/forkserver.py#L167The param
sys_pathis ignored. Result:ModuleNotFoundErrorfor preloaded modules.a) Using
sys_pathfixes this issueb) Maybe better remove "pass" and report and error to simplify problem solving
CPython versions tested on:
3.12
Operating systems tested on:
No response
Linked PRs