8000 gh-69001: Convert links to more usable buttons by StanFromIreland · Pull Request #129591 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-69001: Convert links to more usable buttons #129591

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

Merged
merged 5 commits into from
Feb 20, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Lib/idlelib/help_about.py
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
  • Loading branch information
StanFromIreland and terryjreedy authored Feb 4, 2025
commit cef6a10c424dda0f14beeadff425752f598d2630
2 changes: 1 addition & 1 deletion Lib/idlelib/help_about.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def create_widgets(self):

docs_url = ("https://docs.python.org/%d.%d/library/idle.html" %
sys.version_info[:2])
docs = Button(info_buttons, text='Python Documentation', width=35,
docs = Button(info_buttons, text='IDLE Documentation', width=35,
highlightbackground=self.bg,
command=lambda: webbrowser.open(docs_url))
docs.grid(row=4, column=0, columnspan=2, sticky=W, padx=10, pady=10)
Expand Down
Loading
0