diff options
Diffstat (limited to 'Lib/tkinter/commondialog.py')
-rw-r--r-- | Lib/tkinter/commondialog.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/tkinter/commondialog.py b/Lib/tkinter/commondialog.py index d2688dba9b5..1e75cae689d 100644 --- a/Lib/tkinter/commondialog.py +++ b/Lib/tkinter/commondialog.py @@ -15,11 +15,6 @@ class Dialog: command = None def __init__(self, master=None, **options): - - # FIXME: should this be placed on the module level instead? - if TkVersion < 4.2: - raise TclError("this module requires Tk 4.2 or newer") - self.master = master self.options = options if not master and options.get('parent'): |