mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
py-cvs-rel2_1 (Rev 1.4) merge - move "import *" to module level
This commit is contained in:
parent
0e5fb0a618
commit
7eea271464
1 changed files with 1 additions and 1 deletions
|
|
@ -222,7 +222,6 @@ def asksavefile(self):
|
|||
|
||||
|
||||
def test():
|
||||
from Tkinter import *
|
||||
root = Tk()
|
||||
class MyEditWin:
|
||||
def __init__(self, text):
|
||||
|
|
@ -251,4 +250,5 @@ def save_a_copy(self, event):
|
|||
root.mainloop()
|
||||
|
||||
if __name__ == "__main__":
|
||||
from Tkinter import *
|
||||
test()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue