summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-104522: Fix test_subprocess failure when build Python in the root h...Miss Islington (bot)2024-01-181-8/+7
* [3.11] gh-104522: Fix OSError raised when run a subprocess (GH-114195) (GH-11...Serhiy Storchaka2024-01-181-4/+6
* gh-87868: Sort and remove duplicates in getenvironment() (GH-102731)Miss Islington (bot)2024-01-111-0/+46
* [3.11] gh-110184: Fix subprocess test_pipesize_default() (GH-110465) (#110472)Miss Islington (bot)2023-10-061-18/+23
* [3.11] gh-108416: Mark slow but not CPU bound test methods with requires_reso...Serhiy Storchaka2023-09-051-0/+2
* [3.11] gh-108416: Mark slow test methods with @requires_resource('cpu') (GH-1...Serhiy Storchaka2023-09-031-0/+1
* [3.11] gh-105436: Ignore unrelated errors when checking empty env (GH-105742)...Miss Islington (bot)2023-06-131-3/+4
* [3.11] gh-105436: The environment block should end with two null wchar_t valu...Miss Islington (bot)2023-06-121-0/+7
* [3.11] gh-104472: Skip `test_subprocess.ProcessTestCase.test_empty_env` if AS...Miss Islington (bot)2023-05-191-0/+3
* [3.11] gh-95672 fix typo SkitTest to SkipTest (gh-102119) (#102121)Miss Islington (bot)2023-02-221-1/+1
* gh-100005: Skip test_script_as_dev_fd() on FreeBSD (GH-100006)Miss Islington (bot)2022-12-051-1/+1
* gh-60203: Always pass True/False as boolean arguments in tests (GH-99983)Miss Islington (bot)2022-12-041-1/+1
* gh-97825: fix AttributeError when calling subprocess.check_output(input=None)...Miss Islington (bot)2022-10-051-0/+6
* gh-82616: Add process_group support to subprocess.Popen (#23930)Gregory P. Smith2022-05-051-4/+22
* gh-91954: Use shell=True in test_subprocess.test_encoding_warning (GH-92090)Dennis Sweeney2022-05-011-6/+5
* gh-91954: Emit EncodingWarning from locale and subprocess (GH-91977)Inada Naoki2022-04-301-0/+14
* gh-91401: Add a failsafe way to disable vfork. (#91490)Gregory P. Smith2022-04-251-2/+18
* bpo-40280: Emscripten fork_exec now fails early (GH-32224)Christian Heimes2022-04-011-5/+5
* bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)Christian Heimes2022-01-251-0/+3
* bpo-40497: Fix handling of check in subprocess.check_output() (GH-19897)Rémi Lapeyre2021-09-201-0/+8
* bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)Serhiy Storchaka2021-08-291-0/+1
* bpo-43826: Fix resource warning due to unclosed objects. (GH-25381)Karthikeyan Singaravelan2021-08-241-0/+5
* bpo-28254: Cleanup test_subprocess.test_preexec_gc_module_failure() (GH-25709)Victor Stinner2021-04-291-4/+0
* bpo-28254: _posixsubprocess uses PyGC_Enable/PyGC_Disable (GH-25693)Victor Stinner2021-04-281-12/+0
* bpo-43776: Remove list call from args in Popen repr (GH-25338)M. Kocher2021-04-281-22/+18
* bpo-42388: Fix subprocess.check_output input=None when text=True (GH-23467)Gregory P. Smith2020-12-251-0/+22
* bpo-40550: Fix time-of-check/time-of-action issue in subprocess.Popen.send_si...Filipe Laíns2020-11-211-0/+13
* bpo-42146: Fix memory leak in subprocess.Popen() in case of uid/gid overflow ...Alexey Izbyshev2020-10-261-0/+13
* bpo-41586: Attempt to make the pipesize tests more robust. (GH-22839)Gregory P. Smith2020-10-211-34/+55
* bpo-41586: Add pipesize parameter to subprocess & F_GETPIPE_SZ and F_SETPIPE_...Ruben Vorderman2020-10-191-1/+46
* bpo-41385: Fix test_executable_without_cwd on Windows (GH-21608)Serhiy Storchaka2020-07-261-2/+4
* bpo-40275: Use new test.support helper submodules in tests (GH-21169)Hai Shi2020-06-301-10/+14
* bpo-39481: Implementation for PEP 585 (#18239)Guido van Rossum2020-04-071-2/+3
* bpo-40094: Add test.support.wait_process() (GH-19254)Victor Stinner2020-03-311-8/+3
* bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516)Ronald Oussoren2020-03-221-1/+0
* bpo-39855: Fix test_subprocess if nobody user doesn't exist (GH-18781)Victor Stinner2020-03-051-2/+7
* bpo-35182: fix communicate() crash after child closes its pipes (GH-17020) (G...Alex Rebert2020-01-221-0/+11
* bpo-38630: Fix subprocess.Popen.send_signal() race condition (GH-16984)Victor Stinner2020-01-151-0/+25
* bpo-39019: Implement missing __class_getitem__ for subprocess classes (GH-17558)Batuhan Taşkaya2019-12-301-0/+3
* bpo-38614: Use test.support.SHORT_TIMEOUT constant (GH-17566)Victor Stinner2019-12-111-4/+2
* bpo-38991: Remove test.support.strip_python_stderr() (GH-17490)Victor Stinner2019-12-081-30/+20
* bpo-38724: Implement subprocess.Popen.__repr__ (GH-17151)Andrey Doroschenko2019-11-171-0/+24
* bpo-38456: Handle the case when there is no 'true' command (GH-16739)Pablo Galindo2019-10-131-0/+2
* bpo-38456: Use /bin/true in test_subprocess (GH-16736)Gregory P. Smith2019-10-121-49/+59
* bpo-38417: Add umask support to subprocess (GH-16726)Gregory P. Smith2019-10-121-2/+24
* bpo-36046: posix_spawn() doesn't support uid/gid (GH-16384)Victor Stinner2019-09-251-33/+38
* bpo-36046: Fix buildbot failures (GH-16091)Gregory P. Smith2019-09-131-3/+17
* bpo-36046: Add user and group parameters to subprocess (GH-11950)Patrick McLean2019-09-121-4/+158
* bpo-37424: Avoid a hang in subprocess.run timeout output capture (GH-14490)Gregory P. Smith2019-09-111-0/+21
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-1/+1