index
:
cpython
3.10
3.11
3.12
3.13
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_subprocess.py
Commit message (
Expand
)
Author
Age
*
gh-124986: Fix test_no_leaking in test_subprocess on NetBSD and FreeBSD (GH-1...
Serhiy Storchaka
2025-04-14
*
gh-117174: Add a new route in linecache to fetch interactive source code (#11...
Pablo Galindo Salgado
2025-03-10
*
gh-116742: Fix subprocess test_check_output_timeout() (#130836)
Victor Stinner
2025-03-05
*
gh-120754: Add a strace helper and test set of syscalls for open().read(), Ta...
Cody Maloney
2024-11-02
*
Revert "GH-120754: Add a strace helper and test set of syscalls for o… (#12...
Shantanu
2024-08-24
*
GH-120754: Add a strace helper and test set of syscalls for open().read() (#1...
Cody Maloney
2024-08-24
*
gh-121381 Remove subprocess._USE_VFORK escape hatch (#121383)
Cody Maloney
2024-07-30
*
gh-121571: Do not use `EnvironmentError` in tests, use `OSError` instead (#12...
sobolevn
2024-07-10
*
gh-119064: Use os_helper.FakePath instead of pathlib.Path in tests (GH-119065)
Serhiy Storchaka
2024-05-16
*
gh-98966: Handle stdout=subprocess.STDOUT (GH-98967)
Paulo Neves
2024-03-26
*
gh-113964: Don't prevent new threads until all non-daemon threads exit (#116677)
Sam Gross
2024-03-19
*
gh-90872: Fix subprocess.Popen.wait() for negative timeout (#116989)
Victor Stinner
2024-03-19
*
gh-104522: Fix test_subprocess failure when build Python in the root home dir...
Serhiy Storchaka
2024-01-18
*
gh-104522: Fix OSError raised when run a subprocess (#114195)
Serhiy Storchaka
2024-01-17
*
gh-87868: Skip `test_one_environment_variable` in `test_subprocess` when the ...
AN Long
2024-01-10
*
gh-87868: Sort and remove duplicates in getenvironment() (GH-102731)
AN Long
2024-01-09
*
gh-113117: Support posix_spawn in subprocess.Popen with close_fds=True (#113118)
Jakub Kulík
2023-12-17
*
gh-112334: Regression test that vfork is used when expected. (#112734)
Gregory P. Smith
2023-12-09
*
gh-112334: Restore subprocess's use of `vfork()` & fix `extra_groups=[]` beha...
Gregory P. Smith
2023-12-04
*
gh-67224: Show source lines in tracebacks when using the -c option when runni...
Pablo Galindo Salgado
2023-10-26
*
gh-110184: Fix subprocess test_pipesize_default() (#110465)
Victor Stinner
2023-10-06
*
gh-108416: Mark slow but not CPU bound test methods with requires_resource('w...
Serhiy Storchaka
2023-09-05
*
gh-108416: Mark slow test methods with @requires_resource('cpu') (GH-108421)
Serhiy Storchaka
2023-09-02
*
gh-105436: Ignore unrelated errors when checking empty env (GH-105742)
Steve Dower
2023-06-14
*
gh-105436: The environment block should end with two null wchar_t values (GH-...
Dora203
2023-06-12
*
gh-104690 Disallow thread creation and fork at interpreter finalization (#104...
chgnrdv
2023-06-04
*
gh-104472: Skip `test_subprocess.ProcessTestCase.test_empty_env` if ASAN is e...
chgnrdv
2023-05-19
*
gh-95672 skip fcntl when pipesize is smaller than pagesize (gh-102163)
Hyunkyun Moon
2023-03-01
*
gh-95672 fix typo SkitTest to SkipTest (gh-102119)
Hyunkyun Moon
2023-02-22
*
gh-100005: Skip test_script_as_dev_fd() on FreeBSD (#100006)
Victor Stinner
2022-12-05
*
gh-60203: Always pass True/False as boolean arguments in tests (GH-99983)
Serhiy Storchaka
2022-12-04
*
gh-97825: fix AttributeError when calling subprocess.check_output(input=None)...
andrei kulakov
2022-10-04
*
gh-82616: Add process_group support to subprocess.Popen (#23930)
Gregory P. Smith
2022-05-05
*
gh-91954: Use shell=True in test_subprocess.test_encoding_warning (GH-92090)
Dennis Sweeney
2022-04-30
*
gh-91954: Emit EncodingWarning from locale and subprocess (GH-91977)
Inada Naoki
2022-04-30
*
gh-91401: Add a failsafe way to disable vfork. (#91490)
Gregory P. Smith
2022-04-25
*
bpo-40280: Emscripten fork_exec now fails early (GH-32224)
Christian Heimes
2022-04-01
*
bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)
Christian Heimes
2022-01-25
*
bpo-40497: Fix handling of check in subprocess.check_output() (GH-19897)
Rémi Lapeyre
2021-09-20
*
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Serhiy Storchaka
2021-08-29
*
bpo-43826: Fix resource warning due to unclosed objects. (GH-25381)
Karthikeyan Singaravelan
2021-08-24
*
bpo-28254: Cleanup test_subprocess.test_preexec_gc_module_failure() (GH-25709)
Victor Stinner
2021-04-29
*
bpo-28254: _posixsubprocess uses PyGC_Enable/PyGC_Disable (GH-25693)
Victor Stinner
2021-04-28
*
bpo-43776: Remove list call from args in Popen repr (GH-25338)
M. Kocher
2021-04-28
*
bpo-42388: Fix subprocess.check_output input=None when text=True (GH-23467)
Gregory P. Smith
2020-12-24
*
bpo-40550: Fix time-of-check/time-of-action issue in subprocess.Popen.send_si...
Filipe Laíns
2020-11-21
*
bpo-42146: Fix memory leak in subprocess.Popen() in case of uid/gid overflow ...
Alexey Izbyshev
2020-10-25
*
bpo-41586: Attempt to make the pipesize tests more robust. (GH-22839)
Gregory P. Smith
2020-10-20
*
bpo-41586: Add pipesize parameter to subprocess & F_GETPIPE_SZ and F_SETPIPE_...
Ruben Vorderman
2020-10-19
*
bpo-41385: Fix test_executable_without_cwd on Windows (GH-21608)
Serhiy Storchaka
2020-07-26
[next]