diff options
author | Georg Brandl <georg@python.org> | 2010-08-26 14:30:56 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-08-26 14:30:56 (GMT) |
commit | 816756182e831cd51313085077b584ed150e00d7 (patch) | |
tree | 1f10d2424a7668dbeae5195b25321af759d573c6 /Doc | |
parent | 179249f49333f823a6671e1af6c6aab4870bb9a1 (diff) | |
download | cpython-816756182e831cd51313085077b584ed150e00d7.zip cpython-816756182e831cd51313085077b584ed150e00d7.tar.gz cpython-816756182e831cd51313085077b584ed150e00d7.tar.bz2 |
#9681: typo.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/subprocess.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index f75858d..1904f57 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -307,7 +307,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 childs point of view. +containing traceback information from the child's point of view. The most common exception raised is :exc:`OSError`. This occurs, for example, when trying to execute a non-existent file. Applications should prepare for |