diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2023-12-12 01:00:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-12 01:00:51 -0500 |
commit | e0fb7004ede71389c9dd462cd03352cc3c3a4d8c (patch) | |
tree | b0e3551c0e882d44228c1876ef81159f767be0ec /Lib/idlelib/help_about.py | |
parent | 616622cab7200bac476bf753d6cc98f4ee48808c (diff) | |
download | cpython-e0fb7004ede71389c9dd462cd03352cc3c3a4d8c.tar.gz cpython-e0fb7004ede71389c9dd462cd03352cc3c3a4d8c.zip |
gh-112953: Rename idlelib/NEWS.txt to News3.txt and update (#112988)
Diffstat (limited to 'Lib/idlelib/help_about.py')
-rw-r--r-- | Lib/idlelib/help_about.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/idlelib/help_about.py b/Lib/idlelib/help_about.py index cfa4ca781f0..aa1c352897f 100644 --- a/Lib/idlelib/help_about.py +++ b/Lib/idlelib/help_about.py @@ -129,11 +129,11 @@ class AboutDialog(Toplevel): idle.grid(row=12, column=0, sticky=W, padx=10, pady=0) idle_buttons = Frame(frame_background, bg=self.bg) idle_buttons.grid(row=13, column=0, columnspan=3, sticky=NSEW) - self.readme = Button(idle_buttons, text='README', width=8, + self.readme = Button(idle_buttons, text='Readme', width=8, highlightbackground=self.bg, command=self.show_readme) self.readme.pack(side=LEFT, padx=10, pady=10) - self.idle_news = Button(idle_buttons, text='NEWS', width=8, + self.idle_news = Button(idle_buttons, text='News', width=8, highlightbackground=self.bg, command=self.show_idle_news) self.idle_news.pack(side=LEFT, padx=10, pady=10) @@ -167,7 +167,7 @@ class AboutDialog(Toplevel): def show_idle_news(self): "Handle News button event." - self.display_file_text('About - NEWS', 'NEWS.txt', 'utf-8') + self.display_file_text('About - News', 'News3.txt', 'utf-8') def display_printer_text(self, title, printer): """Create textview for built-in constants. |