[Python-checkins] bpo-44966: Fix out-of-date traceback message (GH-27867) (GH-27876)

rhettinger webhook-mailer at python.org
Sat Aug 21 20:37:01 EDT 2021


https://github.com/python/cpython/commit/407b3e0bb028c30fbf5efcf58c70c50eaa6712b0
commit: 407b3e0bb028c30fbf5efcf58c70c50eaa6712b0
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: rhettinger <rhettinger at users.noreply.github.com>
date: 2021-08-21T19:36:54-05:00
summary:

bpo-44966: Fix out-of-date traceback message (GH-27867) (GH-27876)

files:
M Doc/tutorial/errors.rst

diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst
index 516c925b72f5e7..4e2ed1d10a65c6 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 "<stdin>", line 1, in <module>
-   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



More information about the Python-checkins mailing list