diff options
author | Harmandeep Singh <harmandeep3091@gmail.com> | 2019-01-03 19:53:56 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2019-01-03 19:53:56 (GMT) |
commit | 47a2fced84605a32b79aa3ebc543533ad1a976a1 (patch) | |
tree | 7325255933afd85be7d6da08decd38639ee09ed6 | |
parent | ab54b9a130c88f708077c2ef6c4963b632c132b3 (diff) | |
download | cpython-47a2fced84605a32b79aa3ebc543533ad1a976a1.zip cpython-47a2fced84605a32b79aa3ebc543533ad1a976a1.tar.gz cpython-47a2fced84605a32b79aa3ebc543533ad1a976a1.tar.bz2 |
bpo-31450: Remove documentation mentioning that subprocess's child_traceback is available with the parent process (GH-11422)
-rw-r--r-- | Doc/library/subprocess.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 25f267c..e784458 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -572,9 +572,7 @@ Exceptions ^^^^^^^^^^ Exceptions raised in the child process, before the new program has started to -execute, will be re-raised in the parent. Additionally, the exception object -will have one extra attribute called :attr:`child_traceback`, which is a string -containing traceback information from the child's point of view. +execute, will be re-raised in the parent. The most common exception raised is :exc:`OSError`. This occurs, for example, when trying to execute a non-existent file. Applications should prepare for |