-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
bpo-32989: IDLE - fix bad editor call of pyparse method #5968
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
Conversation
I removed the " needs backport to 3.6" label, the 3.6 branch no long accept bugfixes (only security fixes are accepted): https://devguide.python.org/#status-of-python-branches |
I have reviewed and tweaked everything except the new indent tests, including the proposed commit message. Correct calls to find...start should work since they presumably did before the parameter was removed, but I want to check a bit more. Edit: After merging master, I discovered that the call change was already done on another issue. The there should not be any behavior change with remaining patch. |
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.
Will merge when CI is done.
Thanks @csabella for the PR, and @terryjreedy for merging it 🌮🎉.. I'm working now to backport this PR to: 3.7, 3.8. |
Fix comments and add tests for editor newline_and_indent_event method. Remove unused None default for function parameter of pyparse find_good_parse_start method and code triggered by that default. Co-authored-by: Terry Jan Reedy <[email protected]> (cherry picked from commit ec64640) Co-authored-by: Cheryl Sabella <[email protected]>
GH-18096 is a backport of this pull request to the 3.8 branch. |
Fix comments and add tests for editor newline_and_indent_event method. Remove unused None default for function parameter of pyparse find_good_parse_start method and code triggered by that default. Co-authored-by: Terry Jan Reedy <[email protected]> (cherry picked from commit ec64640) Co-authored-by: Cheryl Sabella <[email protected]>
GH-18097 is a backport of this pull request to the 3.7 branch. |
Fix comments and add tests for editor newline_and_indent_event method. Remove unused None default for function parameter of pyparse find_good_parse_start method and code triggered by that default. Co-authored-by: Terry Jan Reedy <[email protected]> (cherry picked from commit ec64640) Co-authored-by: Cheryl Sabella <[email protected]>
Fix comments and add tests for editor newline_and_indent_event method. Remove unused None default for function parameter of pyparse find_good_parse_start method and code triggered by that default. Co-authored-by: Terry Jan Reedy <[email protected]> (cherry picked from commit ec64640) Co-authored-by: Cheryl Sabella <[email protected]>
Thanks, Terry! |
Fix comments and add tests for editor newline_and_indent_event method. Remove unused None default for function parameter of pyparse find_good_parse_start method and code triggered by that default. Co-authored-by: Terry Jan Reedy <[email protected]>
Fix comments and add tests for editor newline_and_indent_event method.
Remove unused None default for function parameter of pyparse find_good_parse_start method
and code triggered by that default.
https://bugs.python.org/issue32989