From f9506e7d1aa8bb869acf32a0ce810f8be6addc8f Mon Sep 17 00:00:00 2001 From: Bogdana Vereha Date: Sat, 26 Oct 2024 17:26:35 +0200 Subject: [PATCH] Fix a typo in ``Doc/tutorial/errors.rst`` exception output (GH-126001) (cherry picked from commit a78d5b32429e2399178ac838e0e62b2bd62c0af9) Co-authored-by: Bogdana Vereha --- Doc/tutorial/errors.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "", line 1, in - divide("2", "0") + divide("2", "1") ~~~~~~^^^^^^^^^^ File "", line 3, in divide result = x / y