Commit d3592486 authored by Guido van Rossum's avatar Guido van Rossum

Friendlier response to interrupt. Use /usr/local/*bin*/python.

parent ff3da050
#! /ufs/guido/bin/sgi/python
#! /usr/local/python
#! /usr/local/bin/python
# xxci
#
......@@ -111,5 +111,8 @@ def askyesno(prompt):
s = raw_input(prompt)
return s in ['y', 'yes']
setup()
go(getargs())
try:
setup()
go(getargs())
except KeyboardInterrupt:
print '[Intr]'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment