diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2011-03-16 14:03:10 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2011-03-16 14:03:10 (GMT) |
commit | c1577902c62dd14e43ba37662a31d76addd4ac7e (patch) | |
tree | 2f45db9306ee93e60bee7951b15f70b867ade1c9 /Doc | |
parent | 4d5fe33a7067310cca80351377c17712e4bd1360 (diff) | |
download | cpython-c1577902c62dd14e43ba37662a31d76addd4ac7e.zip cpython-c1577902c62dd14e43ba37662a31d76addd4ac7e.tar.gz cpython-c1577902c62dd14e43ba37662a31d76addd4ac7e.tar.bz2 |
Fix typo in subprocess documentation.
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 6ea3c10..4a12b76 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -387,7 +387,7 @@ All of the functions and methods that accept a *timeout* parameter, such as :func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if the timeout expires before the process exits. -Exceptions defined in this module all inherit from :ext:`SubprocessError`. +Exceptions defined in this module all inherit from :exc:`SubprocessError`. .. versionadded:: 3.3 The :exc:`SubprocessError` base class was added. |