From 634556819fe60e8f8bba522978c4d3e0948b85f5 Mon Sep 17 00:00:00 2001 From: Mark Roseman Date: Tue, 27 Jun 2017 19:42:10 -0700 Subject: [PATCH] [3.6] bpo-24813: IDLE tagline is Integrated Development and Learning Environment (GH-2451) Patch by Mark Roseman (cherry picked from commit 592eda1) --- Lib/idlelib/help_about.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/help_about.py b/Lib/idlelib/help_about.py index 967f0342a101c2..679ac78d32db95 100644 --- a/Lib/idlelib/help_about.py +++ b/Lib/idlelib/help_about.py @@ -81,7 +81,7 @@ def create_widgets(self): logo = Label(frame_background, image=self.icon_image, bg=self.bg) logo.grid(row=0, column=0, sticky=W, rowspan=2, padx=10, pady=10) - byline_text = "Python's Integrated DeveLopment Environment" + 5*'\n' + byline_text = "Python's Integrated Development\nand Learning Environment" + 5*'\n' byline = Label(frame_background, text=byline_text, justify=LEFT, fg=self.fg, bg=self.bg) byline.grid(row=2, column=0, sticky=W, columnspan=3, padx=10, pady=5)