From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 22 Aug 2021 00:35:32 +0000 (-0700) Subject: bpo-44966: Fix out-of-date traceback message (GH-27867) X-Git-Tag: v3.10.0rc2~76 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=95a9ba173ecaeec0cb8bf57cfcd916d64fa6f861;p=thirdparty%2FPython%2Fcpython.git bpo-44966: Fix out-of-date traceback message (GH-27867) (cherry picked from commit 15a64d89a31b7e91f0361c305b7b27d8761db93d) Co-authored-by: Raymond Hettinger --- diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index e7a45a302c65..f2490d65db5d 100644 --- a/Doc/tutorial/errors.rst +++ b/Doc/tutorial/errors.rst @@ -53,7 +53,7 @@ programs, however, and result in error messages as shown here:: >>> '2' + 2 Traceback (most recent call last): File "", line 1, in - TypeError: Can't convert 'int' object to str implicitly + TypeError: can only concatenate str (not "int") to str The last line of the error message indicates what happened. Exceptions come in different types, and the type is printed as part of the message: the types in