[Python-checkins] bpo-33987: Use ttk Label on IDLE statusbar (GH-22941)

terryjreedy webhook-mailer at python.org
Sat Oct 24 19:32:43 EDT 2020


https://github.com/python/cpython/commit/e53e54425d9b7b9b7b082817da104d60bb25e3a2
commit: e53e54425d9b7b9b7b082817da104d60bb25e3a2
branch: master
author: Mark Roseman <mark at markroseman.com>
committer: terryjreedy <tjreedy at udel.edu>
date: 2020-10-24T19:32:34-04:00
summary:

bpo-33987: Use ttk Label on IDLE statusbar (GH-22941)

files:
M Lib/idlelib/statusbar.py

diff --git a/Lib/idlelib/statusbar.py b/Lib/idlelib/statusbar.py
index ae52a56368c82..755fafb0ac643 100644
--- a/Lib/idlelib/statusbar.py
+++ b/Lib/idlelib/statusbar.py
@@ -1,5 +1,4 @@
-from tkinter import Label
-from tkinter.ttk import Frame
+from tkinter.ttk import Label, Frame
 
 
 class MultiStatusBar(Frame):



More information about the Python-checkins mailing list