-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
gh-125225 Fix column misalignment in help('topics') output #125226
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
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 |
f4d174c
to
6cd0236
Compare
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 |
The 'help("topics")' output was misaligned due to "ASSIGNMENTEXPRESSIONS" exceeding the implicit maximum default column width of 19 characters. Reduced the number of columns from 4 to 3 in the listtopics() function to allow more space for longer topic names.
6cd0236
to
97fb819
Compare
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 |
I believe the |
Thanks @EtiennePelletier for the PR, and @ambv for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13, 3.14. |
…thongh-125226) The 'help("topics")' output was misaligned due to "ASSIGNMENTEXPRESSIONS" exceeding the implicit maximum default column width of 19 characters. Reduced the number of columns from 4 to 3 in the listtopics() function to allow more space for longer topic names. (cherry picked from commit b22460c) Co-authored-by: Étienne Pelletier <[email protected]> Co-authored-by: Łukasz Langa <[email protected]>
…thongh-125226) The 'help("topics")' output was misaligned due to "ASSIGNMENTEXPRESSIONS" exceeding the implicit maximum default column width of 19 characters. Reduced the number of columns from 4 to 3 in the listtopics() function to allow more space for longer topic names. (cherry picked from commit b22460c) Co-authored-by: Étienne Pelletier <[email protected]> Co-authored-by: Łukasz Langa <[email protected]>
GH-134225 is a backport of this pull request to the 3.14 branch. |
GH-134226 is a backport of this pull request to the 3.13 branch. |
…h-125226) (gh-134225) The 'help("topics")' output was misaligned due to "ASSIGNMENTEXPRESSIONS" exceeding the implicit maximum default column width of 19 characters. Reduced the number of columns from 4 to 3 in the listtopics() function to allow more space for longer topic names. (cherry picked from commit b22460c) Co-authored-by: Étienne Pelletier <[email protected]> Co-authored-by: Łukasz Langa <[email protected]>
…h-125226) (#134226) The 'help("topics")' output was misaligned due to "ASSIGNMENTEXPRESSIONS" exceeding the implicit maximum default column width of 19 characters. Reduced the number of columns from 4 to 3 in the listtopics() function to allow more space for longer topic names. (cherry picked from commit b22460c) Co-authored-by: Étienne Pelletier <[email protected]> Co-authored-by: Łukasz Langa <[email protected]>
This PR addresses the issue described in issue 125225.
The output of
help("topics")
was misaligned due to"ASSIGNMENTEXPRESSIONS"
exceeding the implicit maximum default column width of 19 characters.This was achieved by reducing the number of columns from 4 to 3 in the
listtopics()
function, allowing more space for longer topic names and improving overall readability.Here are the non-truncated outputs before and after the fix:
Before:
After: