[issue44966] example code does not macth the very version(3.9)

2021-08-21 Thread Raymond Hettinger
Change by Raymond Hettinger : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue44966] example code does not macth the very version(3.9)

2021-08-21 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 407b3e0bb028c30fbf5efcf58c70c50eaa6712b0 by Miss Islington (bot) in branch '3.9': bpo-44966: Fix out-of-date traceback message (GH-27867) (GH-27876) https://github.com/python/cpython/commit/407b3e0bb028c30fbf5efcf58c70c50eaa6712b0 -

[issue44966] example code does not macth the very version(3.9)

2021-08-21 Thread miss-islington
miss-islington added the comment: New changeset 95a9ba173ecaeec0cb8bf57cfcd916d64fa6f861 by Miss Islington (bot) in branch '3.10': bpo-44966: Fix out-of-date traceback message (GH-27867) https://github.com/python/cpython/commit/95a9ba173ecaeec0cb8bf57cfcd916d64fa6f861 -- __

[issue44966] example code does not macth the very version(3.9)

2021-08-21 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 15a64d89a31b7e91f0361c305b7b27d8761db93d by Raymond Hettinger in branch 'main': bpo-44966: Fix out-of-date traceback message (GH-27867) https://github.com/python/cpython/commit/15a64d89a31b7e91f0361c305b7b27d8761db93d -- __

[issue44966] example code does not macth the very version(3.9)

2021-08-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +26330 pull_request: https://github.com/python/cpython/pull/27875 ___ Python tracker _

[issue44966] example code does not macth the very version(3.9)

2021-08-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +26331 pull_request: https://github.com/python/cpython/pull/27876 ___ Python tracker ___ __

[issue44966] example code does not macth the very version(3.9)

2021-08-20 Thread Raymond Hettinger
Change by Raymond Hettinger : -- keywords: +patch nosy: +rhettinger nosy_count: 2.0 -> 3.0 pull_requests: +26322 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27867 ___ Python tracker

[issue44966] example code does not macth the very version(3.9)

2021-08-20 Thread 杨青
New submission from 杨青 : 【url】https://docs.python.org/3/tutorial/errors.html 【chapter】8.2. Exceptions 【origina example code】 >>> '2' + 2 Traceback (most recent call last): File "", line 1, in TypeError: Can't convert 'int' object to str implicitly 【what i got in practice】 >>> '2' + 2 Traceb