-
-
Notifications
You must be signed in to change notification settings - Fork 31.8k
gh-81087: Add str.dedent and cache it at compile time #13445
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
remilapeyre
commented
May 20, 2019
•
edited by terryjreedy
Loading
edited by terryjreedy
- Issue: Compile time textwrap.dedent() equivalent for str or bytes literals #81087
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.
missing: A documentation update documenting the new str.dedent
method.
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 |
@remilapeyre, if your changes are ready to be reviewed again, please add a PR-level comment as requested by @bedevere-bot. Thanks! |
@csabella, sorry, I have made the requested changes; please review again |
Thanks for making the requested changes! @gpshead: please review the changes made to this pull request. |
@remilapeyre, please resolve the merge conflicts. Thank you! |
Hi @csabella, it should be good now. There is a lot of PendingDeprecationWarnings in the tests. I'm not sure what I should do, should I fix all calls or let them as is for now? |
One thing I think would help this PR is not updating so many Changing those to use the new |
@remilapeyre Would you like to untangle the code changes here from updating existing usages of |
Hi @ammaraskar I don't mind either as I was seriously lacking time to take care of this the past few months. I'm trying to find half a day a week to work on CPython again so I should come back to this PR in a few days. |
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.
Requesting changes as per above; we should separate the implementation of the feature from its use elsewhere in the codebase
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 |
@@ -209,7 +208,7 @@ def _wrapper(parent): # htest # | |||
_linenumbers_drag_scrolling_spec = { | |||
'file': 'sidebar', | |||
'kwds': {}, | |||
'msg': textwrap.dedent("""\ | |||
'msg': """\ |
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 don't like having '.dedent moved from here to the end 16 lines down.
In any case, I want both idlelib changes removed from this PR to avoid gratuitous differences between versions.