commit | d6d63f543796c48fd9a1f297b860287443687d2e | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Jan 04 18:53:28 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Jan 04 18:53:28 2009 +0000 |
tree | 63875b35c0fc3f1e7280dce75cb12c052915ce69 | |
parent | 6cb2bddb85d2cdc16c214b35d795fb60840bcc67 [diff] [blame] |
fix a lot of Tkinter imports
diff --git a/Demo/tkinter/matt/00-HELLO-WORLD.py b/Demo/tkinter/matt/00-HELLO-WORLD.py index 20a2050..3b4092a 100644 --- a/Demo/tkinter/matt/00-HELLO-WORLD.py +++ b/Demo/tkinter/matt/00-HELLO-WORLD.py
@@ -1,4 +1,4 @@ -from Tkinter import * +from tkinter import * # note that there is no explicit call to start Tk. # Tkinter is smart enough to start the system if it's not already going.