diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:09:00 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:09:00 (GMT) |
commit | b33336f65014f32c3e9873c32618a3bf656f3445 (patch) | |
tree | 023edd04ecc9b83b48a83594f2fd4f69d7ef709a /Doc/library/exceptions.rst | |
parent | 7378d6374c286c86daf4389fbbb4ee2d52ac3401 (diff) | |
download | cpython-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.rst | 2 |
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 |