-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
bpo-35641: IDLE - calltip not properly formatted if no docstring #11415
Conversation
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.
Other than my inline comment, two more things:
- Add a test for this bug. It should fail without the fix and pass with the fix.
- Add a NEWS entry. The easiest way to do so is to follow the "Details" link next to the failing "bedevere/news" check near the bottom of this page, which will lead you to the "blurb-it" tool.
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 |
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.
Thanks for your contribution!
When you write a commit message, make it more descriptive about what the commit does, it's very important when diving into git log, here are some tips about commit messages: https://devguide.python.org/pullrequest/#making-good-commits
You need to use blurb add
or create manually an entry to Misc/NEWS
.
Please add some test to your pull request :)
remove debug line
Thanks for your comments. I will push tests |
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.
What tal said. Add at least one test and a blurb file. I will likely edit whatever you write before merging, so don't agonize over the wording. But with a file, I can do so in the online pencil editor.
Tal, since our change requests were identical, I will merge this when CI passes. |
Thanks @eamanu for the PR, and @terryjreedy for merging it 🌮🎉.. I'm working now to backport this PR to: 3.7. |
GH-11420 is a backport of this pull request to the 3.7 branch. |
Thanks @eamanu for the PR, and @terryjreedy for merging it 🌮🎉.. I'm working now to backport this PR to: 3.7. |
Sorry, @eamanu and @terryjreedy, I could not cleanly backport this to |
Thanks @eamanu for the PR, and @terryjreedy for merging it 🌮🎉.. I'm working now to backport this PR to: 3.7. |
Sorry, @eamanu and @terryjreedy, I could not cleanly backport this to |
Sorry for the noise; both Terry and I added the "needs backport to 3.7", which caused the second backport attempt to fail. |
Better than neither of us ;-). Part of the problem was that the robots + GitHub were really slow in posting anything, so I removed and re-added the label after the backport has been done. |
I just noticed that the blurb was put in the Library directory instead of the Idle directory. #11479 moves it. |
bpo-35641: IDLE: calltips not properly formatted for functions without doc-strings
https://bugs.python.org/issue35641