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_subprocess.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.10] gh-104472: Skip `test_subprocess.ProcessTestCase.test_empty_env` if AS...
Miss Islington (bot)
2023-05-19
1
-0/+3
*
[3.10] gh-95672 fix typo SkitTest to SkipTest (gh-102119) (gh-102122)
Miss Islington (bot)
2023-02-22
1
-1/+1
*
gh-97825: fix AttributeError when calling subprocess.check_output(input=None)...
Miss Islington (bot)
2022-10-05
1
-0/+6
*
[3.10] gh-91401: Conservative backport of `subprocess._USE_VFORK` (#91932)
Gregory P. Smith
2022-05-01
1
-0/+22
*
[3.10] bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-2800...
Serhiy Storchaka
2021-09-08
1
-0/+1
*
bpo-28254: Cleanup test_subprocess.test_preexec_gc_module_failure() (GH-25709)
Victor Stinner
2021-04-29
1
-4/+0
*
bpo-28254: _posixsubprocess uses PyGC_Enable/PyGC_Disable (GH-25693)
Victor Stinner
2021-04-28
1
-12/+0
*
bpo-43776: Remove list call from args in Popen repr (GH-25338)
M. Kocher
2021-04-28
1
-22/+18
*
bpo-42388: Fix subprocess.check_output input=None when text=True (GH-23467)
Gregory P. Smith
2020-12-25
1
-0/+22
*
bpo-40550: Fix time-of-check/time-of-action issue in subprocess.Popen.send_si...
Filipe Laíns
2020-11-21
1
-0/+13
*
bpo-42146: Fix memory leak in subprocess.Popen() in case of uid/gid overflow ...
Alexey Izbyshev
2020-10-26
1
-0/+13
*
bpo-41586: Attempt to make the pipesize tests more robust. (GH-22839)
Gregory P. Smith
2020-10-21
1
-34/+55
*
bpo-41586: Add pipesize parameter to subprocess & F_GETPIPE_SZ and F_SETPIPE_...
Ruben Vorderman
2020-10-19
1
-1/+46
*
bpo-41385: Fix test_executable_without_cwd on Windows (GH-21608)
Serhiy Storchaka
2020-07-26
1
-2/+4
*
bpo-40275: Use new test.support helper submodules in tests (GH-21169)
Hai Shi
2020-06-30
1
-10/+14
*
bpo-39481: Implementation for PEP 585 (#18239)
Guido van Rossum
2020-04-07
1
-2/+3
*
bpo-40094: Add test.support.wait_process() (GH-19254)
Victor Stinner
2020-03-31
1
-8/+3
*
bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516)
Ronald Oussoren
2020-03-22
1
-1/+0
*
bpo-39855: Fix test_subprocess if nobody user doesn't exist (GH-18781)
Victor Stinner
2020-03-05
1
-2/+7
*
bpo-35182: fix communicate() crash after child closes its pipes (GH-17020) (G...
Alex Rebert
2020-01-22
1
-0/+11
*
bpo-38630: Fix subprocess.Popen.send_signal() race condition (GH-16984)
Victor Stinner
2020-01-15
1
-0/+25
*
bpo-39019: Implement missing __class_getitem__ for subprocess classes (GH-17558)
Batuhan Taşkaya
2019-12-30
1
-0/+3
*
bpo-38614: Use test.support.SHORT_TIMEOUT constant (GH-17566)
Victor Stinner
2019-12-11
1
-4/+2
*
bpo-38991: Remove test.support.strip_python_stderr() (GH-17490)
Victor Stinner
2019-12-08
1
-30/+20
*
bpo-38724: Implement subprocess.Popen.__repr__ (GH-17151)
Andrey Doroschenko
2019-11-17
1
-0/+24
*
bpo-38456: Handle the case when there is no 'true' command (GH-16739)
Pablo Galindo
2019-10-13
1
-0/+2
*
bpo-38456: Use /bin/true in test_subprocess (GH-16736)
Gregory P. Smith
2019-10-12
1
-49/+59
*
bpo-38417: Add umask support to subprocess (GH-16726)
Gregory P. Smith
2019-10-12
1
-2/+24
*
bpo-36046: posix_spawn() doesn't support uid/gid (GH-16384)
Victor Stinner
2019-09-25
1
-33/+38
*
bpo-36046: Fix buildbot failures (GH-16091)
Gregory P. Smith
2019-09-13
1
-3/+17
*
bpo-36046: Add user and group parameters to subprocess (GH-11950)
Patrick McLean
2019-09-12
1
-4/+158
*
bpo-37424: Avoid a hang in subprocess.run timeout output capture (GH-14490)
Gregory P. Smith
2019-09-11
1
-0/+21
*
Fix typos in comments, docs and test names (#15018)
Min ho Kim
2019-07-30
1
-1/+1
*
Remove unused imports in tests (GH-14518)
Victor Stinner
2019-07-01
1
-8/+1
*
bpo-37380: subprocess: don't use _active on win (GH-14360)
Ruslan Kuprieiev
2019-06-28
1
-9/+25
*
bpo-35537: Rewrite setsid test for os.posix_spawn (GH-11721)
Victor Stinner
2019-06-14
1
-5/+4
*
bpo-31961: Fix support of path-like executables in subprocess. (GH-5914)
Serhiy Storchaka
2019-05-28
1
-0/+55
*
bpo-32236: open() emits RuntimeWarning if buffering=1 for binary mode (GH-4842)
Alexey Izbyshev
2018-10-20
1
-1/+2
*
closes bpo-32490: Fix filename duplication in subprocess exception message. (...
Zackery Spytz
2018-09-11
1
-1/+3
*
bpo-32270: Don't close stdin/out/err in pass_fds (GH-6242)
Gregory P. Smith
2018-09-11
1
-0/+30
*
Remove AIX workaround test_subprocess (GH-8939)
Michael Felt
2018-08-26
1
-8/+2
*
bpo-34044: subprocess.Popen copies startupinfo (GH-8090)
Victor Stinner
2018-07-05
1
-0/+27
*
Revert "bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)" (GH-7919)
Victor Stinner
2018-06-26
1
-12/+14
*
bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)
Victor Stinner
2018-06-22
1
-14/+12
*
Improve the subprocess restore_signals=True test. (GH-7414)
Gregory P. Smith
2018-06-05
1
-6/+22
*
bpo-32844: Fix a subprocess misredirection of a low fd (GH5689)
Alexey Izbyshev
2018-03-26
1
-0/+50
*
bpo-32964: Reuse a testing implementation of the path protocol in tests. (#5930)
Serhiy Storchaka
2018-03-02
1
-6/+2
*
Revert "bpo-31961: subprocess now accepts path-like args (GH-4329)" (#5912)
Serhiy Storchaka
2018-02-27
1
-31/+0
*
bpo-30121: Fix test_subprocess for Windows Debug builds (GH-5758)
Zachary Ware
2018-02-19
1
-1/+1
*
bpo-31961: subprocess now accepts path-like args (GH-4329)
Anders Lorentsen
2018-01-30
1
-0/+31
[next]