summaryrefslogtreecommitdiffstats
path: root/Doc/library/subprocess.rst
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-87452: Improve the Popen.returncode docs (#103771)Miss Islington (bot)2023-04-251-3/+6
* [3.11] Fixes duplicated word (GH-102623) (#102624)Miss Islington (bot)2023-03-121-1/+1
* gh-101283: Version was just released, so should be changed in 3.11.3 (GH-101719)Miss Islington (bot)2023-02-091-5/+5
* Update Lib/subprocess.pyMiss Islington (bot)2023-02-081-0/+40
* [3.11] gh-47937: Note that Popen attributes are read-only (GH-93070) (#101684)Miss Islington (bot)2023-02-081-11/+12
* [Minor PR] Quotes in documentation changed into code blocks (GH-99536)Miss Islington (bot)2022-12-241-0/+4
* gh-99238: clarify the type of the env dict. (GH-99253)Miss Islington (bot)2022-11-081-3/+7
* [3.11] Docs: Bump sphinx-lint and use double backticks for inline literals (G...Hugo van Kemenade2022-10-201-1/+1
* gh-87597: Document TimeoutExpired.stdout & .stderr types (GH-97685)Miss Islington (bot)2022-09-301-2/+7
* gh-95451: Update docs for wasm32-emscripten and -wasi platforms (GH-95452)Miss Islington (bot)2022-08-021-0/+1
* [3.11] gh-95415: Make availability directive consistent (GH-95416) (GH-95438)Christian Heimes2022-08-011-2/+2
* Docs: remove redundant "adverb-adjective" hyphens from compound modifiers (GH...Miss Islington (bot)2022-07-051-2/+2
* gh-92417: `subprocess` docs: remove note on compatibility with Python <3.5 (G...Miss Islington (bot)2022-05-191-3/+0
* gh-82616: Add process_group support to subprocess.Popen (#23930)Gregory P. Smith2022-05-051-8/+15
* gh-87801: Add run() to subprocess.CalledProcessError description (#91628)slateny2022-04-301-1/+3
* gh-91954: Emit EncodingWarning from locale and subprocess (GH-91977)Inada Naoki2022-04-301-4/+10
* gh-91401: Add a failsafe way to disable vfork. (#91490)Gregory P. Smith2022-04-251-0/+36
* bpo-26897: Clarify Popen stdin, stdout, stderr file object docs (GH-30231)Kumar Aditya2022-02-251-14/+16
* bpo-24888: Clarify subprocess.check_call propagates exceptions if unable to s...DonnaDia2021-09-071-0/+2
* bpo-39498 Start linking the security warnings in the stdlib modules (GH-18272)Anthony Shaw2021-08-091-0/+1
* bpo-44713: [doc fix]: typo in subprocess.rst (GH-27297)Jack DeVries2021-07-221-1/+1
* bpo-14879: [doc] clarify how to check for errors from subprocess.Popen(..., s...Jack DeVries2021-07-221-1/+4
* bpo-23750: Document os-system, subprocess. Patch by Martin Panter. (GH-26016)uniocto2021-05-111-1/+7
* Fix a typo in subprocess documentation (GH-25426)andrei kulakov2021-04-171-1/+1
* bpo-42388: Fix subprocess.check_output input=None when text=True (GH-23467)Gregory P. Smith2020-12-251-2/+3
* [doc] Fix erroneous backslashes in signatures and names (GH-23658)Andre Delfino2020-12-171-1/+1
* Add two spaces around equal sign (#23719)sblondon2020-12-131-1/+1
* bpo-40932: Note security caveat of shlex.quote on Windows (GH-21502)Ammar Askar2020-11-111-5/+2
* bpo-42041: Clarify how subprocess searches for the executable (GH-22715)Paul Moore2020-10-201-2/+21
* bpo-41586: Add pipesize parameter to subprocess & F_GETPIPE_SZ and F_SETPIPE_...Ruben Vorderman2020-10-191-1/+9
* bpo-40707: Document that Popen.communicate sets the returncode attribute (GH-...Gareth Rees2020-06-241-4/+5
* Doc: change 'Posix' for 'POSIX' (GH-20001)Mathieu Dupuy2020-05-171-2/+2
* bpo-39976: Add **other_popen_kwargs to subprocess docs (GH-20145)Zackery Spytz2020-05-171-4/+8
* bpo-13826: Clarify Popen constructor example (GH-18438)Tim D. Smith2020-02-101-2/+8
* bpo-38630: Fix subprocess.Popen.send_signal() race condition (GH-16984)Victor Stinner2020-01-151-0/+2
* Added missing coma after end of list in subprocess.rst (GH-17217)Jules Lasne (jlasne)2019-11-191-1/+1
* bpo-38417: Add umask support to subprocess (GH-16726)Gregory P. Smith2019-10-121-3/+9
* bpo-36046: Add user and group parameters to subprocess (GH-11950)Patrick McLean2019-09-121-2/+30
* Minor ReST formatting fixes in subprocess docs (#14876)Tim Hoffmann2019-09-111-4/+4
* bpo-37951: Lift subprocess's fork() restriction (GH-15544)Christian Heimes2019-08-271-0/+7
* Replace backquote with command substitution in subprocess doc example (GH-13941)David Jones2019-07-161-5/+5
* bpo-37390: Add audit event table to documentations (GH-14406)Steve Dower2019-06-271-1/+1
* bpo-37363: Add audit events for a range of modules (GH-14301)Steve Dower2019-06-241-0/+7
* bpo-31961: Fix support of path-like executables in subprocess. (GH-5914)Serhiy Storchaka2019-05-281-3/+26
* bpo-36760: Clarify subprocess capture_output docs. (GH-13322)Gregory P. Smith2019-05-141-1/+3
* bpo-35537: Document posix_spawn() change in subprocess (GH-11668)Victor Stinner2019-04-251-0/+7
* bpo-33319: Clarify subprocess call docs. (GH-12508)Gregory P. Smith2019-03-231-12/+13
* Fixed a missing . and a missing capital letter. (GH-12170)Jules Lasne (jlasne)2019-03-041-2/+2
* bpo-31450: Remove documentation mentioning that subprocess's child_traceback ...Harmandeep Singh2019-01-031-3/+1
* Update subprocess.Popen documentation wrt universal_newlines arg (GH-10337)Jakub Stasiak2018-11-121-3/+8