summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
Commit message (Expand)AuthorAgeFilesLines
* Fix pyflakes warnings: variable is assigned to but never used (#142294)Victor Stinner2025-12-081-1/+1
* gh-87512: Fix `subprocess` using `timeout=` on Windows blocking with a large ...Gregory P. Smith2025-11-291-2/+21
* gh-74389: gh-70560: subprocess.Popen.communicate() now ignores stdin.flush er...Gregory P. Smith2025-11-291-0/+4
* GH-134453: Fix subprocess memoryview input handling on POSIX (GH-134949)Gregory P. Smith2025-11-291-2/+5
* gh-141473: Fix subprocess.Popen.communicate to send input to stdin upon a sub...Artur Jamro2025-11-291-1/+1
* GH-133711: Enable UTF-8 mode by default (PEP 686) (#133712)Adam Turner2025-07-151-2/+1
* gh-133089: Use original timeout value for `TimeoutExpired` when the func `sub...Nadeshiko Manju2025-05-051-4/+10
* gh-129204: Add _PYTHON_SUBPROCESS_USE_POSIX_SPAWN environment knob (GH-132184)Vincent Fazio2025-04-071-0/+3
* gh-118761: Revert "Improve import time of `subprocess` (GH-129427)" (#130201)Gregory P. Smith2025-02-161-14/+2
* gh-130080: return in finally in subprocess.py (#130081)Irit Katriel2025-02-161-4/+3
* gh-118761: Improve import time of `subprocess` (GH-129427)Taneli Hukkinen2025-01-291-2/+14
* gh-128342: Specify timeout unit in subprocess docstrings (GH-128343)n-l-i2024-12-301-3/+3
* gh-121381 Remove subprocess._USE_VFORK escape hatch (#121383)Cody Maloney2024-07-311-2/+1
* gh-120417: Fix "imported but unused" linter warnings (#120461)Victor Stinner2024-06-141-1/+1
* GH-118844: Fix build failures when combining --disable-gil with --enable-expe...Savannah Ostrowski2024-05-111-1/+1
* gh-118293: Suppress mouse cursor feedback when launching Windows processes wi...Henrik Tunedal2024-04-281-0/+2
* gh-98966: Handle stdout=subprocess.STDOUT (GH-98967)Paulo Neves2024-03-261-0/+3
* gh-90872: Fix subprocess.Popen.wait() for negative timeout (#116989)Victor Stinner2024-03-191-0/+2
* gh-116167: Allow disabling the GIL with `PYTHON_GIL=0` or `-X gil=0` (#116338)Brett Simmers2024-03-111-1/+1
* gh-104522: Fix OSError raised when run a subprocess (#114195)Serhiy Storchaka2024-01-181-3/+8
* gh-113117: Support posix_spawn in subprocess.Popen with close_fds=True (#113118)Jakub Kulík2023-12-171-3/+8
* gh-113119 fix environment handling in subprocess.Popen when posix_spawn is us...Jakub Kulík2023-12-171-3/+0
* gh-112736: Refactor del-safe symbol handling in subprocess (#112738)Russell Keith-Magee2023-12-051-24/+24
* gh-106723: forward -Xfrozen_modules option to spawned process interpreters (#...Felipe A. Hernandez2023-07-281-1/+1
* gh-87474: Fix file descriptor leaks in subprocess.Popen (#96351)cptpcrd2023-05-161-130/+163
* gh-101283: Fix use of unbound variable (GH-101712)Steve Dower2023-02-081-0/+2
* gh-101283: Improved fallback logic for subprocess with shell=True on Windows ...Oleg Iarygin2023-02-081-1/+15
* Add note on capture_output arg to subprocess.run() docstring (#98012)andrei kulakov2022-10-071-1/+2
* gh-97825: fix AttributeError when calling subprocess.check_output(input=None)...andrei kulakov2022-10-051-1/+2
* gh-95174: Handle missing waitpid and gethostbyname in WASI (GH-95181)Christian Heimes2022-07-241-6/+17
* gh-90473: Fail subprocess early on Emscripten/WASI (GH-92802)Christian Heimes2022-05-141-6/+11
* gh-57684: Add -P cmdline option and PYTHONSAFEPATH env var (#31542)Victor Stinner2022-05-051-2/+4
* gh-82616: Add process_group support to subprocess.Popen (#23930)Gregory P. Smith2022-05-051-5/+12
* gh-91954: Emit EncodingWarning from locale and subprocess (GH-91977)Inada Naoki2022-04-301-10/+28
* gh-91401: Add a failsafe way to disable vfork. (#91490)Gregory P. Smith2022-04-251-1/+4
* bpo-40280: Emscripten fork_exec now fails early (GH-32224)Christian Heimes2022-04-011-2/+8
* bpo-40280: Use presence of msvcrt module to detect Windows (GH-30930)Christian Heimes2022-01-271-2/+7
* bpo-40280: Change subprocess imports for cleaner error on wasm32 (GH-30620)Christian Heimes2022-01-171-8/+7
* bpo-40497: Fix handling of check in subprocess.check_output() (GH-19897)Rémi Lapeyre2021-09-201-2/+3
* bpo-44935: enable posix_spawn() on Solaris (GH-27795)Jakub Kulík2021-08-171-2/+3
* Fix typos in multiple files (GH-26689)Binbin2021-06-131-1/+1
* bpo-43776: Remove list call from args in Popen repr (GH-25338)M. Kocher2021-04-281-1/+1
* bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)Inada Naoki2021-03-291-1/+8
* bpo-41718: subprocess imports grp and pwd on demand (GH-24987)Victor Stinner2021-03-231-12/+9
* bpo-43423 Fix IndexError in subprocess _communicate function (GH-24777)Chris Griffith2021-03-111-4/+2
* bpo-43391: Remove the broken Python 2.4 link from the comment (GH-24736)Kamil Turek2021-03-041-1/+0
* bpo-42388: Fix subprocess.check_output input=None when text=True (GH-23467)Gregory P. Smith2020-12-251-1/+5
* bpo-40550: Fix time-of-check/time-of-action issue in subprocess.Popen.send_si...Filipe Laíns2020-11-211-1/+5
* bpo-41586: Add pipesize parameter to subprocess & F_GETPIPE_SZ and F_SETPIPE_...Ruben Vorderman2020-10-191-1/+18
* bpo-40939: Remove the old parser (GH-20768)Pablo Galindo2020-06-111-1/+1