]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-42589: Change URL for 'from' link when used in a raised exception (GH-23872)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 29 Apr 2021 18:26:26 +0000 (11:26 -0700)
committerGitHub <noreply@github.com>
Thu, 29 Apr 2021 18:26:26 +0000 (11:26 -0700)
Links for 'raise Exception from x' target to 'The raise statement' (7.8) section instead of 'The import statement' (7.11) section.

There are more modified links than in the bug report because I searched some other ones which can get the same improvement.
(cherry picked from commit 2fd928c8c1328424130cb9c51fc02ad5f9a66328)

Co-authored-by: sblondon <sblondon@users.noreply.github.com>
Doc/library/exceptions.rst
Doc/tutorial/errors.rst

index 28d1ab150c8706691916186e066c695e9744c5ca..7170b2c2b754f8a90235f967b05ed3443903da78 100644 (file)
@@ -42,12 +42,12 @@ include the originating exception(s) and the final exception.
 
 When raising a new exception (rather than using a bare ``raise`` to re-raise
 the exception currently being handled), the implicit exception context can be
-supplemented with an explicit cause by using :keyword:`from` with
+supplemented with an explicit cause by using :keyword:`from<raise>` with
 :keyword:`raise`::
 
    raise new_exc from original_exc
 
-The expression following :keyword:`from` must be an exception or ``None``. It
+The expression following :keyword:`from<raise>` must be an exception or ``None``. It
 will be set as :attr:`__cause__` on the raised exception. Setting
 :attr:`__cause__` also implicitly sets the :attr:`__suppress_context__`
 attribute to ``True``, so that using ``raise new_exc from None``
index efe44da3043c5e2faffcddd0aeb200c1ec5c8393..f72da5c3404484475888153a3afba946d63fb55e 100644 (file)
@@ -272,7 +272,7 @@ re-raise the exception::
 Exception Chaining
 ==================
 
-The :keyword:`raise` statement allows an optional :keyword:`from` which enables
+The :keyword:`raise` statement allows an optional :keyword:`from<raise>` which enables
 chaining exceptions. For example::
 
     # exc must be exception instance or None.