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 #! /ufs/guido/bin/sgi/python
#! /usr/local/python #! /usr/local/bin/python
# xxci # xxci
# #
...@@ -111,5 +111,8 @@ def askyesno(prompt): ...@@ -111,5 +111,8 @@ def askyesno(prompt):
s = raw_input(prompt) s = raw_input(prompt)
return s in ['y', 'yes'] return s in ['y', 'yes']
setup() try:
go(getargs()) 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