]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-33065: Fix problem debugging user classes with __repr__ method (GH-24183)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 10 Jan 2021 07:30:59 +0000 (23:30 -0800)
committerGitHub <noreply@github.com>
Sun, 10 Jan 2021 07:30:59 +0000 (23:30 -0800)
commit5ded7efa6a7a232dd4a41e6e65e4dae47146514b
tree119d9e200c3f801507db83dbaec65a9429c3f66f
parentca8e96d1edbeb536f58da91e607082463398fce1
bpo-33065: Fix problem debugging user classes with __repr__ method (GH-24183)

If __repr__ uses instance attributes, as normal, and one steps
through the __init__ method, debugger may try to get repr before
the instance attributes exist.  reprlib.repr handles the error.
(cherry picked from commit 81f87bbf9f65702062021a78abd9b8f82c98a414)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Lib/idlelib/NEWS.txt
Lib/idlelib/debugger_r.py
Lib/idlelib/idle_test/test_debugger_r.py
Misc/NEWS.d/next/IDLE/2021-01-10-01-25-43.bpo-33065.zmyHYJ.rst [new file with mode: 0644]