Terry J. Reedy <tjre...@udel.edu> added the comment:
Python 3.10.0a0 Jul 23 2020, win32 (without patch) >>> from multiprocessing import shared_memory >>> shm_a = shared_memory.SharedMemory(create=True, size=0) Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> shm_a = shared_memory.SharedMemory(create=True, size=0) File "f:\dev\3x\lib\multiprocessing\shared_memory.py", line 129, in __init__ h_map = _winapi.CreateFileMapping( OSError: [WinError 87] The parameter is incorrect: 'wnsm_4ab39616' After the patch, I get the value error. ---------- nosy: +terry.reedy versions: +Python 3.10 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue41344> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com