From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 26 Oct 2024 15:32:37 +0000 (+0200) Subject: [3.13] Fix a typo in ``Doc/tutorial/errors.rst`` exception output (GH-126001) (#126009) X-Git-Tag: v3.13.1~227 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f521142b474fc327e330552b40aeffec97e1c69c;p=thirdparty%2FPython%2Fcpython.git [3.13] Fix a typo in ``Doc/tutorial/errors.rst`` exception output (GH-126001) (#126009) Fix a typo in ``Doc/tutorial/errors.rst`` exception output (GH-126001) (cherry picked from commit a78d5b32429e2399178ac838e0e62b2bd62c0af9) Co-authored-by: Bogdana Vereha --- diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index 24fa01428fd0..4c61cbb2b5bc 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