-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
gh-135511 Fixed NameError
and AttributeError
lack of the message in IDLE
#135526
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
NameError
and AttributeError
lack of the message in IDLENameError
and AttributeError
lack of the message in IDLE
I use blurb to create a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To add a test, I think if might be sufficient to add the following tuple to the end of data
in test_idle.test_run.ExceptionTest.
('raise NameError("123\n456")', NameError, "123\n456\n"),
If you want me to make changes and test, I will, but I need sleep now.
Misc/NEWS.d/next/IDLE/2025-06-15-09-50-19.gh-issue-135511.2C5EX-.rst
Outdated
Show resolved
Hide resolved
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
The hint process is rather fragile. Modifying |
I have made the requested changes; please review again |
Thanks for making the requested changes! @terryjreedy: please review the changes made to this pull request. |
NameError
has different actions when be raised in IDLE #135511