-
-
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-36390: simplify classifyws() and add unit tests #14500
bpo-36390: simplify classifyws() and add unit tests #14500
Conversation
Tests based on work by Cheryl Sabella.
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.
I am in favor of these changes, as it significantly improves the readability of classifyws(). However, on line 1594 of editor.py, the space character should probably be added to the regular expression by changing it from r'[\t]*'
to r'[\t ]*'
since it was included as a conditional in the original if statement (unless I am misunderstanding something). Also, the s
flag looks like it is not necessary, as there is no .
being used in the expression. So, in total, I would suggest for it to be changed from re.match(r'[\t]*', s)
to re.match(r'[\t ]*)
.
@aeros167, I think you missed something; with this change, line 1594 that you mentioned already includes a space: m = re.match(r'[ \t]*', s) |
|
@taleinat Oh my apologies, the space before it was a bit hard to see. Is there a way to include the space with something similar to |
@aeros167, renaming the "s" function argument is a good idea! I've just updated this PR, having renamed it "line". |
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.
@taleinat Good idea with regards to specifically usingline
as the variable name, that's a significant improvement over s
and it serves a good specific descriptor for its purpose in this method. Approved.
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.
Tal, did the new tests pass with the original version of the function?
See comments on issue RE docstring, name change, tabwidth, and merge order.
When you're done making the requested changes, leave the comment: |
Kyle, thank you for the useful suggestion. Most of idlelib is essentially private implementation, so API changes are allowed, along with backports. See PEP 434 if curious. |
@terryjreedy, I have made the requested changes; please review again.
Indeed, the new tests also pass with the original implementation. |
Thanks for making the requested changes! @terryjreedy: please review the changes made to this pull request. |
@terryjreedy No problem! So far, I've found code review to be one of my favorite methods of contribution. It helps me to improve my ability to read the code of others (not my strongest area) while also giving back to the Python community. I enjoy engaging in meaningful discussions with other developers and providing constructive feedback. Out of curiosity, how does the general process of improving readability differ in the standard libraries? I'd imagine the proposals are more scrutinized due to the changes affecting a larger audience. Readability means a lot to me personally, and it seems to be one of the largest advantages that Python has over other programming languages. Is it generally encouraged, or is it done on a more limited basis? Also, is there a specific intermediate role in the community for code reviewers, similar to the "Python triager" role on the bug tracker? I'm not concerned with the role having different abilities or privileges, it would mostly just be a goal for me to work towards. I have a long term aspiration of eventually becoming a core developer, but that will likely be far off in the distant future. There's a lot for me to improve and work on in the meantime. |
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.
LGTM. The change is much easier to read than the current code and produces the same results. The only thing that I might suggest is to compile the pattern since it's used in a loop.
@csabella For optimal performance, should the regular expression be compiled outside of the bounds of the loop within each of the functions or compiled once and reused as a global variable across |
Done. FYI, |
Thanks @taleinat for the PR 🌮🎉.. I'm working now to backport this PR to: 3.8. |
Thanks @taleinat for the PR 🌮🎉.. I'm working now to backport this PR to: 3.7. |
GH-14707 is a backport of this pull request to the 3.8 branch. |
…nGH-14500) (cherry picked from commit 9b5ce62) Co-authored-by: Tal Einat <taleinat@gmail.com>
GH-14708 is a backport of this pull request to the 3.7 branch. |
…nGH-14500) (cherry picked from commit 9b5ce62) Co-authored-by: Tal Einat <taleinat@gmail.com>
) (cherry picked from commit 9b5ce62) Co-authored-by: Tal Einat <taleinat@gmail.com>
) (cherry picked from commit 9b5ce62) Co-authored-by: Tal Einat <taleinat@gmail.com>
The changes I requested were made, but I cannot change the +- review after the merge. |
Re-implement
classifyws(s, tabwidth)
using a simple regexp andstr.expandtabs()
.Tests based on work by Cheryl Sabella.
https://bugs.python.org/issue36390