https://github.com/python/cpython/commit/c1b620eecc2ca0f9ae9d5ee2d973e823db295ad2 commit: c1b620eecc2ca0f9ae9d5ee2d973e823db295ad2 branch: 3.8 author: Miss Skeleton (bot) <31488909+miss-islington at users.noreply.github.com> committer: miss-islington <31488909+miss-islington at users.noreply.github.com> date: 2020年10月24日T16:51:03-07:00 summary: bpo-33987: Use ttk Label on IDLE statusbar (GH-22941) (cherry picked from commit e53e54425d9b7b9b7b082817da104d60bb25e3a2) Co-authored-by: Mark Roseman <mark at markroseman.com> 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):