Skip to content

gh-112695: Rename idlelib/stackviewer module to stackbrowser #121420

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

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

Wulian233
Copy link
Contributor

@Wulian233 Wulian233 commented Jul 6, 2024

This PR is to solve the #112695 name confusion

In addition to the renaming, there are a few minor changes, not important, but perhaps mentioning

In README.txt

  1. Remove the tabbedpages line, it has been removed 6 years ago IDLE htest: remove spec for deleted tabbedpages.py #78131, And in the bpo-33950: Remove IDLE htest spec for a deleted file. #7881 further removed.
  2. According to the actual filename, change NEWS2.txt to NEWS2x.txt

item = "%s, line %d: %s" % (modname, lineno, sourceline)
item = f"{modname}, line {lineno}: {sourceline}"
else:
item = "%s.%s(...), line %d: %s" % (modname, funcname,
lineno, sourceline)
item = f"{modname}.{funcname}(...), line {lineno}: {sourceline}"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change in renamed files: I think it's clearer to use f-string here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant