From: Ronald Oussoren Date: Wed, 16 Mar 2011 14:03:10 +0000 (-0400) Subject: Fix typo in subprocess documentation. X-Git-Tag: v3.3.0a1~2891^2~13^2~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1577902c62dd14e43ba37662a31d76addd4ac7e;p=thirdparty%2FPython%2Fcpython.git Fix typo in subprocess documentation. --- diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 6ea3c10dfc0b..4a12b762275c 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.