aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_asyncio/test_subprocess.py
Commit message (Expand)AuthorAge
* gh-87744: fix waitpid race while calling send_signal in asyncio (#121126)Kumar Aditya2024-07-01
* 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-71052: Change Android's `sys.platform` from "linux" to "android"Malcolm Smith2024-03-11
* gh-71052: Add test exclusions to support running the test suite on Android (#...Malcolm Smith2024-02-29
* gh-114099: Add test exclusions to support running the test suite on iOS (#114...Russell Keith-Magee2024-02-05
* gh-114272: Fix or skip tests that fail due to spaces in paths (GH-114451)Steve Dower2024-01-25
* gh-109862: Fix test_create_subprocess_with_pidfd when it was run separately (...Serhiy Storchaka2024-01-15
* Add support.MS_WINDOWS constant (#110446)Victor Stinner2023-10-06
* gh-109709: Fix asyncio test_stdin_broken_pipe() (#109710)Victor Stinner2023-09-22
* gh-108973: Fix asyncio test_subprocess_consistent_callbacks() (#109431)Victor Stinner2023-09-20
* gh-83925: Make asyncio.subprocess communicate similar to non-asyncio (#18650)Marek Marczykowski-Górecki2023-04-27
* gh-102515: Remove unused imports in the `Lib/` directory (#102516)Alex Waygood2023-03-08
* GH-100192: fix `asyncio` subprocess tests to pass env vars to subprocess (#10...Kumar Aditya2022-12-28
* GH-100192: add more `asyncio` subprocess tests (#100194)Kumar Aditya2022-12-28
* GH-100133: fix `asyncio` subprocess losing `stderr` and `stdout` output (#100...Kumar Aditya2022-12-21
* GH-98219: reduce sleep time in `asyncio` subprocess test (#99464)Kumar Aditya2022-11-14
* GH-98407: fix `test_kill_issue43884` to not leak child processes (#98491)Kumar Aditya2022-10-24
* 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-94182: Run the PidfdChildWatcher on the running loop (#94184)Thomas Grainger2022-10-07
* gh-88050: Fix asyncio subprocess to kill process cleanly when process is bloc...Kumar Aditya2022-10-05
* gh-95010: Fix asyncio GenericWatcherTests.test_create_subprocess_fails_with_i...Thomas Grainger2022-07-21
* gh-72889: Remove redundant mock.Mock()._is_coroutine = False workarounds (#94...Thomas Grainger2022-07-17
* gh-82616: Add process_group support to subprocess.Popen (#23930)Gregory P. Smith2022-05-05
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-06
* bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suit...Pablo Galindo2021-06-05
* bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...Yurii Karabas2020-11-28
* bpo-40275: Use new test.support helper submodules in tests (GH-20824)Hai Shi2020-06-25
* Suppress the hang (#18457)Andrew Svetlov2020-02-27
* closes bpo-38692: Add a pidfd child process watcher to asyncio. (GH-17069)Benjamin Peterson2019-11-13
* bpo-38614: Increase asyncio test_communicate() timeout (GH-16995)Victor Stinner2019-10-30
* bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)Yury Selivanov2019-09-29
* bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)Andrew Svetlov2019-09-12
* bpo-38107: Replace direct future and task contructor calls with factories in ...Andrew Svetlov2019-09-11
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-30
* Get rid of exception traceback printing in asyncio tests (GH-14343)Andrew Svetlov2019-06-24
* Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...Andrew Svetlov2019-06-03
* bpo-35621: Support running subprocesses in asyncio when loop is executed in n...Andrew Svetlov2019-06-02
* bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)依云2019-05-28
* bpo-36686: Improve the documentation of the std* params in loop.subprocess_ex...sbstp2019-05-27
* bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...Niklas Fiekas2019-05-20
* Forbid creating of stream objects outside of asyncio (#13101)Andrew Svetlov2019-05-06
* bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661)Yury Selivanov2018-10-02
* bpo-33562: Check the global asyncio event loop policy isn't set after any tes...Brett Cannon2018-06-01
* Revert "A better fix for asyncio test_stdin_broken_pipe (GH-7221)" (GH-7235)Yury Selivanov2018-05-29
* A better fix for asyncio test_stdin_broken_pipe (#7221)Yury Selivanov2018-05-29