diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-12 16:01:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-12 16:01:00 (GMT) |
commit | dc0d571b6401527f236b0513f29847e2b9b8a188 (patch) | |
tree | f6c9193dc5a7352e511ed1e5ca5e6faab1afc9b8 /Lib/tkinter/dialog.py | |
parent | 2d6097d027e0dd3debbabc702aa9c98d94ba32a3 (diff) | |
download | cpython-dc0d571b6401527f236b0513f29847e2b9b8a188.zip cpython-dc0d571b6401527f236b0513f29847e2b9b8a188.tar.gz cpython-dc0d571b6401527f236b0513f29847e2b9b8a188.tar.bz2 |
bpo-34964: Make Tkinter sources more readable by adding blank lines. (GH-9822)
Diffstat (limited to 'Lib/tkinter/dialog.py')
-rw-r--r-- | Lib/tkinter/dialog.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/tkinter/dialog.py b/Lib/tkinter/dialog.py index f61c5f7..cb463f7 100644 --- a/Lib/tkinter/dialog.py +++ b/Lib/tkinter/dialog.py @@ -19,8 +19,10 @@ class Dialog(Widget): *cnf['strings'])) try: Widget.destroy(self) except TclError: pass + def destroy(self): pass + def _test(): d = Dialog(None, {'title': 'File Modified', 'text': |