[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2021-07-28 Thread Jason R. Coombs
Change by Jason R. Coombs : -- nosy: -jaraco ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2021-07-28 Thread Jason R. Coombs
Change by Jason R. Coombs : -- pull_requests: -25966 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2021-07-28 Thread Jason R. Coombs
Change by Jason R. Coombs : -- nosy: +jaraco nosy_count: 8.0 -> 9.0 pull_requests: +25966 pull_request: https://github.com/python/cpython/pull/27436 ___ Python tracker ___

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2021-07-28 Thread Steve Dower
Steve Dower added the comment: New changeset 899e37b202c8b096d55e2e3c300c9759ebfe7f7a by Miss Islington (bot) in branch '3.9': bpo-40263: Fixes an off-by-one error in _winapi_WaitForMultipleObjects_impl (GH-19501)

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2021-07-28 Thread miss-islington
miss-islington added the comment: New changeset bccb7b9509e875ef23ec3225d03214ca047e5b1a by Miss Islington (bot) in branch '3.10': bpo-40263: Fixes an off-by-one error in _winapi_WaitForMultipleObjects_impl (GH-19501)

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2021-07-28 Thread Steve Dower
Steve Dower added the comment: Fixed, better late than never. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2021-07-28 Thread Steve Dower
Steve Dower added the comment: New changeset 92b5dc780db968f6277f42cb06926dddb7475dc6 by Ray Donnelly in branch 'main': bpo-40263: Fixes an off-by-one error in _winapi_WaitForMultipleObjects_impl (GH-19501) https://github.com/python/cpython/commit/92b5dc780db968f6277f42cb06926dddb7475dc6

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2021-07-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +25958 pull_request: https://github.com/python/cpython/pull/27429 ___ Python tracker ___

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2021-07-28 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 7.0 -> 8.0 pull_requests: +25957 pull_request: https://github.com/python/cpython/pull/27428 ___ Python tracker

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2021-07-20 Thread Christian Fersch
Christian Fersch added the comment: This is still an issue in python3.9. It just hit us while using the default config on a Threadripper 3990X that has 128 logical cores: with concurrent.futures.ProcessPoolExecutor() as executor: -- nosy: +Chronial versions: +Python 3.9

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2020-04-13 Thread Ray Donnelly
Ray Donnelly added the comment: https://github.com/python/cpython/pull/19501 -- ___ Python tracker ___ ___ Python-bugs-list

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2020-04-13 Thread Ray Donnelly
Change by Ray Donnelly : -- nosy: +Ray.Donnelly nosy_count: 5.0 -> 6.0 pull_requests: +18852 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19501 ___ Python tracker

[issue40263] ValueError exception on _winapi.WaitForMultipleObjects

2020-04-13 Thread Steve Dower
Steve Dower added the comment: (Created from issue26903) Yeah, that looks like a reasonable fix :) -- title: Follow on bug from https://bugs.python.org/issue26903 (ValueError exception on _winapi.WaitForMultipleObjects) -> ValueError exception on _winapi.WaitForMultipleObjects