summaryrefslogtreecommitdiffstats
path: root/Doc/library/exceptions.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-10-13 20:09:00 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-10-13 20:09:00 (GMT)
commitb33336f65014f32c3e9873c32618a3bf656f3445 (patch)
tree023edd04ecc9b83b48a83594f2fd4f69d7ef709a /Doc/library/exceptions.rst
parent7378d6374c286c86daf4389fbbb4ee2d52ac3401 (diff)
downloadcpython-b33336f65014f32c3e9873c32618a3bf656f3445.zip
cpython-b33336f65014f32c3e9873c32618a3bf656f3445.tar.gz
cpython-b33336f65014f32c3e9873c32618a3bf656f3445.tar.bz2
Issue #18758: Fixed and improved cross-references.
Diffstat (limited to 'Doc/library/exceptions.rst')
-rw-r--r--Doc/library/exceptions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst
index ad75ed5..a3e89ca 100644
--- a/Doc/library/exceptions.rst
+++ b/Doc/library/exceptions.rst
@@ -356,7 +356,7 @@ The following exceptions are the exceptions that are actually raised.
executed, and so that a debugger can execute a script without running the risk
of losing control. The :func:`os._exit` function can be used if it is
absolutely positively necessary to exit immediately (for example, in the child
- process after a call to :func:`fork`).
+ process after a call to :func:`os.fork`).
The exception inherits from :exc:`BaseException` instead of :exc:`StandardError`
or :exc:`Exception` so that it is not accidentally caught by code that catches