index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_asyncio
/
test_subprocess.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-114272: Fix or skip tests that fail due to spaces in paths (GH-114451)
Steve Dower
2024-01-25
1
-2/+5
*
gh-109862: Fix test_create_subprocess_with_pidfd when it was run separately (...
Serhiy Storchaka
2024-01-15
1
-2/+7
*
Add support.MS_WINDOWS constant (#110446)
Victor Stinner
2023-10-06
1
-3/+2
*
gh-109709: Fix asyncio test_stdin_broken_pipe() (#109710)
Victor Stinner
2023-09-22
1
-10/+42
*
gh-108973: Fix asyncio test_subprocess_consistent_callbacks() (#109431)
Victor Stinner
2023-09-20
1
-11/+43
*
gh-83925: Make asyncio.subprocess communicate similar to non-asyncio (#18650)
Marek Marczykowski-Górecki
2023-04-28
1
-0/+18
*
gh-102515: Remove unused imports in the `Lib/` directory (#102516)
Alex Waygood
2023-03-08
1
-1/+0
*
GH-100192: fix `asyncio` subprocess tests to pass env vars to subprocess (#10...
Kumar Aditya
2022-12-28
1
-2/+4
*
GH-100192: add more `asyncio` subprocess tests (#100194)
Kumar Aditya
2022-12-28
1
-0/+82
*
GH-100133: fix `asyncio` subprocess losing `stderr` and `stdout` output (#100...
Kumar Aditya
2022-12-21
1
-0/+17
*
GH-98219: reduce sleep time in `asyncio` subprocess test (#99464)
Kumar Aditya
2022-11-14
1
-1/+1
*
GH-98407: fix `test_kill_issue43884` to not leak child processes (#98491)
Kumar Aditya
2022-10-24
1
-1/+4
*
GH-98327: Reduce scope of catch_warnings() in _make_subprocess_transport (#98...
Kumar Aditya
2022-10-17
1
-9/+5
*
GH-94597: Deprecate child watcher getters and setters (#98215)
Kumar Aditya
2022-10-15
1
-9/+20
*
bpo-46364: Use sockets for stdin of asyncio only on AIX (#30596)
Christoph Hamsen
2022-10-13
1
-0/+20
*
GH-94597: deprecate `SafeChildWatcher`, `FastChildWatcher` and `MultiLoopChil...
Kumar Aditya
2022-10-08
1
-28/+20
*
GH-94182: Run the PidfdChildWatcher on the running loop (#94184)
Thomas Grainger
2022-10-08
1
-10/+44
*
gh-88050: Fix asyncio subprocess to kill process cleanly when process is bloc...
Kumar Aditya
2022-10-05
1
-0/+25
*
gh-95010: Fix asyncio GenericWatcherTests.test_create_subprocess_fails_with_i...
Thomas Grainger
2022-07-21
1
-20/+26
*
gh-72889: Remove redundant mock.Mock()._is_coroutine = False workarounds (#94...
Thomas Grainger
2022-07-17
1
-2/+0
*
gh-82616: Add process_group support to subprocess.Popen (#23930)
Gregory P. Smith
2022-05-05
1
-0/+3
*
Fix typos in the Lib directory (GH-28775)
Christian Clauss
2021-10-06
1
-1/+1
*
bpo-38323: Skip SubprocessMultiLoopWatcherTest as they can hang the test suit...
Pablo Galindo
2021-06-04
1
-0/+2
*
bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (G...
Yurii Karabas
2020-11-28
1
-20/+0
*
bpo-40275: Use new test.support helper submodules in tests (GH-20824)
Hai Shi
2020-06-25
1
-3/+4
*
Suppress the hang (#18457)
Andrew Svetlov
2020-02-26
1
-2/+9
*
closes bpo-38692: Add a pidfd child process watcher to asyncio. (GH-17069)
Benjamin Peterson
2019-11-14
1
-0/+18
*
bpo-38614: Increase asyncio test_communicate() timeout (GH-16995)
Victor Stinner
2019-10-30
1
-1/+1
*
bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)
Yury Selivanov
2019-09-30
1
-12/+0
*
bpo-36373: Deprecate explicit loop in task and subprocess API (GH-16033)
Andrew Svetlov
2019-09-12
1
-79/+105
*
bpo-38107: Replace direct future and task contructor calls with factories in ...
Andrew Svetlov
2019-09-11
1
-3/+2
*
bpo-35621: Support running subprocesses in asyncio when loop is executed in n...
Andrew Svetlov
2019-06-30
1
-1/+39
*
Get rid of exception traceback printing in asyncio tests (GH-14343)
Andrew Svetlov
2019-06-24
1
-2/+2
*
Revert "bpo-35621: Support running subprocesses in asyncio when loop is execu...
Andrew Svetlov
2019-06-04
1
-39/+1
*
bpo-35621: Support running subprocesses in asyncio when loop is executed in n...
Andrew Svetlov
2019-06-02
1
-1/+39
*
bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)
依云
2019-05-29
1
-0/+11
*
bpo-36686: Improve the documentation of the std* params in loop.subprocess_ex...
sbstp
2019-05-27
1
-0/+90
*
bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...
Niklas Fiekas
2019-05-20
1
-4/+13
*
Forbid creating of stream objects outside of asyncio (#13101)
Andrew Svetlov
2019-05-07
1
-0/+12
*
bpo-34728: Fix asyncio tests to run under "-Werror" (GH-9661)
Yury Selivanov
2018-10-02
1
-4/+4
*
bpo-33562: Check the global asyncio event loop policy isn't set after any tes...
Brett Cannon
2018-06-02
1
-0/+5
*
Revert "A better fix for asyncio test_stdin_broken_pipe (GH-7221)" (GH-7235)
Yury Selivanov
2018-05-30
1
-4/+2
*
A better fix for asyncio test_stdin_broken_pipe (#7221)
Yury Selivanov
2018-05-30
1
-2/+4
*
Attempt to fix test_stdin_broken_pipe on Travis (#7210)
Yury Selivanov
2018-05-29
1
-0/+1
*
bpo-32262: Fix typo in f-string (GH-7016)
Christian Heimes
2018-05-20
1
-0/+24
*
bpo-32273: Move asyncio.test_utils to test.test_asyncio (#4785)
Yury Selivanov
2017-12-11
1
-5/+3
*
bpo-32193: Convert asyncio to async/await usage (#4753)
Andrew Svetlov
2017-12-08
1
-59/+51
*
bpo-31034: Reliable signal handler for test_asyncio (#2867)
Victor Stinner
2017-07-25
1
-18/+25
*
asyncio: Fix trailing whitespace/code style
Yury Selivanov
2017-03-03
1
-4/+6
*
bpo-29704: Fix asyncio.SubprocessStreamProtocol closing (#405)
Seth M. Larson
2017-03-03
1
-0/+22
[next]