diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-04 18:53:28 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-04 18:53:28 +0000 |
commit | d6d63f543796c48fd9a1f297b860287443687d2e (patch) | |
tree | 63875b35c0fc3f1e7280dce75cb12c052915ce69 /Demo/tkinter/guido/paint.py | |
parent | 6cb2bddb85d2cdc16c214b35d795fb60840bcc67 (diff) | |
download | cpython-git-d6d63f543796c48fd9a1f297b860287443687d2e.tar.gz |
fix a lot of Tkinter imports
Diffstat (limited to 'Demo/tkinter/guido/paint.py')
-rw-r--r-- | Demo/tkinter/guido/paint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/tkinter/guido/paint.py b/Demo/tkinter/guido/paint.py index 7b2e814c65..65f2353110 100644 --- a/Demo/tkinter/guido/paint.py +++ b/Demo/tkinter/guido/paint.py @@ -20,7 +20,7 @@ options like other shapes or colors... davem@magnet.com """ -from Tkinter import * +from tkinter import * """paint.py: not exactly a paint program.. just a smooth line drawing demo.""" |