cpython/Demo/tkinter/guido/wish.py

28 lines
623 B
Python
Raw Normal View History

1994-06-20 04:49:28 -03:00
# This is about all it requires to write a wish shell in Python!
1995-10-23 11:36:05 -03:00
import _tkinter
1995-09-07 16:44:48 -03:00
import os
1994-06-20 04:49:28 -03:00
1995-10-23 11:36:05 -03:00
tk = _tkinter.create(os.environ['DISPLAY'], 'wish', 'Tk', 1)
1994-06-20 04:49:28 -03:00
tk.call('update')
cmd = ''
while 1:
if cmd: prompt = ''
else: prompt = '% '
try:
line = raw_input(prompt)
except EOFError:
break
cmd = cmd + (line + '\n')
if tk.getboolean(tk.call('info', 'complete', cmd)):
tk.record(line)
try:
result = tk.call('eval', cmd)
except _tkinter.TclError, msg:
print 'TclError:', msg
else:
if result: print result
cmd = ''