diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2021-01-25 11:33:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-25 11:33:18 (GMT) |
commit | 879986d8a932c4524cb6ff822afc9537de16e28d (patch) | |
tree | 897aea5f98000a01fad09fa83303d3d5086ae61b /Lib/idlelib/squeezer.py | |
parent | cf19cc3b920ca5995e1c202d2c3dd7a59ac8eac8 (diff) | |
download | cpython-879986d8a932c4524cb6ff822afc9537de16e28d.zip cpython-879986d8a932c4524cb6ff822afc9537de16e28d.tar.gz cpython-879986d8a932c4524cb6ff822afc9537de16e28d.tar.bz2 |
bpo-43013: Fix old tkinter module names in idlelib (GH-24326)
Lowercase 'tkColorChooser', 'tkFileDialog', 'tkSimpleDialog', and
'tkMessageBox' and remove 'tk'. Just lowercase 'tkFont' as 'font'
is already used. Adjust import.
Diffstat (limited to 'Lib/idlelib/squeezer.py')
-rw-r--r-- | Lib/idlelib/squeezer.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/idlelib/squeezer.py b/Lib/idlelib/squeezer.py index be1538a..3046d80 100644 --- a/Lib/idlelib/squeezer.py +++ b/Lib/idlelib/squeezer.py @@ -17,7 +17,7 @@ messages and their tracebacks. import re import tkinter as tk -import tkinter.messagebox as tkMessageBox +from tkinter import messagebox from idlelib.config import idleConf from idlelib.textview import view_text @@ -147,7 +147,7 @@ class ExpandingButton(tk.Button): if self.is_dangerous is None: self.set_is_dangerous() if self.is_dangerous: - confirm = tkMessageBox.askokcancel( + confirm = messagebox.askokcancel( title="Expand huge output?", message="\n\n".join([ "The squeezed output is very long: %d lines, %d chars.", @@ -155,7 +155,7 @@ class ExpandingButton(tk.Button): "It is recommended to view or copy the output instead.", "Really expand?" ]) % (self.numoflines, len(self.s)), - default=tkMessageBox.CANCEL, + default=messagebox.CANCEL, parent=self.text) if not confirm: return "break" |