aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/unix_events.py
Commit message (Expand)AuthorAge
* gh-127949: deprecate asyncio policy classes (#128216)Kumar Aditya2024-12-24
* gh-122858: Deprecate `asyncio.iscoroutinefunction` (#122875)Wulian2024-08-11
* gh-120804: remove `is_active` method from internal child watchers implementat...Kumar Aditya2024-06-28
* GH-120804: Remove `PidfdChildWatcher`, `ThreadedChildWatcher` and `AbstractCh...Kumar Aditya2024-06-23
* GH-120804: Remove `get_child_watcher` and `set_child_watcher` from asyncio (#...Kumar Aditya2024-06-23
* GH-120804: Remove SafeChildWatcher, FastChildWatcher and MultiLoopChildWatche...Kumar Aditya2024-06-21
* gh-111246: Remove listening Unix socket on close (#111483)Pierre Ossman (ThinLinc team)2023-11-08
* gh-110205: Fix asyncio ThreadedChildWatcher._join_threads() (#110884)Guido van Rossum2023-10-27
* remove redundant call to attach_loop in watcher (#110847)Thomas Grainger2023-10-14
* gh-94597: Add asyncio.EventLoop (#110723)Thomas Grainger2023-10-12
* gh-108973: Fix asyncio test_subprocess_consistent_callbacks() (#109431)Victor Stinner2023-09-20
* gh-82500: Fix asyncio sendfile overflow on 32bit (#107056)J. Nick Koston2023-07-22
* gh-103607: Fix `pause_reading` to work when called from `connection_made` in ...Itayazolay2023-04-27
* GH-94597: add deprecation warnings for subclassing `AbstractChildWatcher` (#9...Kumar Aditya2022-11-11
* GH-98327: Reduce scope of catch_warnings() in _make_subprocess_transport (#98...Kumar Aditya2022-10-17
* GH-94597: Deprecate child watcher getters and setters (#98215)Kumar Aditya2022-10-15
* bpo-46364: Use sockets for stdin of asyncio only on AIX (#30596)Christoph Hamsen2022-10-13
* GH-94597: deprecate `SafeChildWatcher`, `FastChildWatcher` and `MultiLoopChil...Kumar Aditya2022-10-08
* GH-98023: Change default child watcher to PidfdChildWatcher on supported syst...Kumar Aditya2022-10-07
* GH-94182: Run the PidfdChildWatcher on the running loop (#94184)Thomas Grainger2022-10-07
* GH-85760: Fix race in calling process_exited callback too early (#97009)Kumar Aditya2022-09-22
* Revert "gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (...Guido van Rossum2022-09-17
* gh-87079: Warn on unintended signal wakeup fd override in `asyncio` (#96807)Michel Hidalgo2022-09-17
* bpo-44011: New asyncio ssl implementation (#31275)Kumar Aditya2022-02-15
* Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079)Gregory P. Smith2021-10-20
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-06
* bpo-43945: [Enum] reduce scope of new format() behavior (GH-26752)Ethan Furman2021-06-18
* bpo-44011: Revert "New asyncio ssl implementation (GH-17975)" (GH-25848)Pablo Galindo2021-05-03
* bpo-44011: New asyncio ssl implementation (#17975)Andrew Svetlov2021-05-03
* bpo-43989: Add signal format specifier for unix_events (GH-25769)Roberto Hueso2021-05-01
* bpo-38323: Add guard clauses in MultiLoopChildWatcher. (#22756)Chris Jerdonek2020-12-16
* bpo-40364: asyncio uses os.waitstatus_to_exitcode() (GH-23798)Victor Stinner2020-12-16
* bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...Yurii Karabas2020-11-28
* s/wakup/wakeup (GH-20250)Kunal Bhalla2020-05-20
* bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552)Kyle Stanley2020-01-12
* bpo-38982: Fix asyncio PidfdChildWatcher on waitpid() error (GH-17477)Victor Stinner2019-12-06
* bpo-38951: Use threading.main_thread() check in asyncio (GH-17433)Hill Ma2019-12-05
* Remove binding of captured exceptions when not used to reduce the chances of ...Pablo Galindo2019-11-19
* bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161)Kyle Stanley2019-11-14
* closes bpo-38692: Add a pidfd child process watcher to asyncio. (GH-17069)Benjamin Peterson2019-11-13
* bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe ...Andrew Svetlov2019-09-29
* Fix typos in docs, comments and test assert messages (#14872)Min ho Kim2019-07-21
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-30
* Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...Andrew Svetlov2019-06-03
* Fix typos in docs and docstrings (GH-13745)Xtreak2019-06-03
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-02
* bpo-37035: Don't log OSError (GH-13548)Andrew Svetlov2019-05-27
* bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)Yury Selivanov2019-05-27
* bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...Niklas Fiekas2019-05-20
* asyncio: __del__() keep reference to warnings.warn (GH-11491)Victor Stinner2019-01-10