commit | 55618efad934b1b47cc5fdcf0cc58ca8778d0c6a | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Sep 07 19:44:48 1995 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Sep 07 19:44:48 1995 +0000 |
tree | f85d71dfcd238b7da67b910fc99288637a7b2264 | |
parent | c66394d04991dd0f618ca9552fe0bfe9d22e8302 [diff] [blame] |
use $DISPLAY
diff --git a/Demo/tkinter/guido/wish.py b/Demo/tkinter/guido/wish.py index 5cbb1b9..eec4b69 100755 --- a/Demo/tkinter/guido/wish.py +++ b/Demo/tkinter/guido/wish.py
@@ -1,8 +1,9 @@ # This is about all it requires to write a wish shell in Python! import tkinter +import os -tk = tkinter.create(':0', 'wish', 'Tk', 1) +tk = tkinter.create(os.environ['DISPLAY'], 'wish', 'Tk', 1) tk.call('update') cmd = ''