This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author saschanaz
Recipients paul.moore, saschanaz, steve.dower, tim.golden, zach.ware
Date 2021-09-01.13:34:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1630503259.48.0.511164445629.issue45077@roundup.psfhosted.org>
In-reply-to
Content
The argument-less instantiation also fails, which is worse.

```
>>> multiprocessing.Pool()
<multiprocessing.pool.Pool state=RUN pool_size=64>
>>> Exception in thread Thread-1:
Traceback (most recent call last):
  File "C:\Users\sasch\AppData\Local\Programs\Python\Python39\lib\threading.py", line 973, in _bootstrap_inner
    self.run()
  File "C:\Users\sasch\AppData\Local\Programs\Python\Python39\lib\threading.py", line 910, in run
    self._target(*self._args, **self._kwargs)
  File "C:\Users\sasch\AppData\Local\Programs\Python\Python39\lib\multiprocessing\pool.py", line 519, in _handle_workers
    cls._wait_for_updates(current_sentinels, change_notifier)
  File "C:\Users\sasch\AppData\Local\Programs\Python\Python39\lib\multiprocessing\pool.py", line 499, in _wait_for_updates
    wait(sentinels, timeout=timeout)
  File "C:\Users\sasch\AppData\Local\Programs\Python\Python39\lib\multiprocessing\connection.py", line 884, in wait
    ready_handles = _exhaustive_wait(waithandle_to_obj.keys(), timeout)
  File "C:\Users\sasch\AppData\Local\Programs\Python\Python39\lib\multiprocessing\connection.py", line 816, in _exhaustive_wait
    res = _winapi.WaitForMultipleObjects(L, False, timeout)
ValueError: need at most 63 handles, got a sequence of length 66
```
History
Date User Action Args
2021-09-01 13:34:19saschanazsetrecipients: + saschanaz, paul.moore, tim.golden, zach.ware, steve.dower
2021-09-01 13:34:19saschanazsetmessageid: <1630503259.48.0.511164445629.issue45077@roundup.psfhosted.org>
2021-09-01 13:34:19saschanazlinkissue45077 messages
2021-09-01 13:34:19saschanazcreate