https://github.com/python/cpython/commit/a78d5b32429e2399178ac838e0e62b2bd62c0af9
commit: a78d5b32429e2399178ac838e0e62b2bd62c0af9
branch: main
author: Bogdana Vereha <[email protected]>
committer: Eclips4 <[email protected]>
date: 2024-10-26T18:26:35+03:00
summary:

Fix a typo in ``Doc/tutorial/errors.rst`` exception output (#126001)

files:
M Doc/tutorial/errors.rst

diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst
index 24fa01428fd0c0..4c61cbb2b5bc3d 100644
--- a/Doc/tutorial/errors.rst
+++ b/Doc/tutorial/errors.rst
@@ -464,7 +464,7 @@ A more complicated example::
    executing finally clause
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
-       divide("2", "0")
+       divide("2", "1")
        ~~~~~~^^^^^^^^^^
      File "<stdin>", line 3, in divide
        result = x / y

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to