mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-29446: tkinter 'import *' only imports what it should (GH-14864)
Add __all__ to tkinter.__init__ and submodules. Replace 'import *' with explicit imports in some submodules.
This commit is contained in:
parent
c4cda4369f
commit
76b645124b
12 changed files with 52 additions and 15 deletions
|
@ -8,15 +8,17 @@
|
|||
# written by Fredrik Lundh, May 1997
|
||||
#
|
||||
|
||||
from tkinter import *
|
||||
__all__ = ["Dialog"]
|
||||
|
||||
from tkinter import Frame
|
||||
|
||||
|
||||
class Dialog:
|
||||
|
||||
command = None
|
||||
command = None
|
||||
|
||||
def __init__(self, master=None, **options):
|
||||
self.master = master
|
||||
self.master = master
|
||||
self.options = options
|
||||
if not master and options.get('parent'):
|
||||
self.master = options['parent']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue