gst-libav1: update to 1.24.11
[oi-userland.git] / components / python / python39 / patches / 22-asyncio-watcher.patch
blobaa2c0f1ee2f09a2bcb64dcdb1e168eb24e35839c
1 Asyncio watcher 'MultiLoopChildWatcher' currently doesn't work well
2 on Solaris and can freeze the event loop indefinitely.
4 This was reported upstream:
5 https://bugs.python.org/issue37573
7 --- Python-3.9.0/Lib/asyncio/unix_events.py
8 +++ Python-3.9.0/Lib/asyncio/unix_events.py
9 @@ -30,7 +30,7 @@ __all__ = (
10 'SelectorEventLoop',
11 'AbstractChildWatcher', 'SafeChildWatcher',
12 'FastChildWatcher', 'PidfdChildWatcher',
13 - 'MultiLoopChildWatcher', 'ThreadedChildWatcher',
14 + 'ThreadedChildWatcher',
15 'DefaultEventLoopPolicy',