> 2) Anybody know how to alter the "while 1: pass" section to make the > app stoppable?
That one I think I can help with! See below.
> while 1: pass
try:
while 1:
pass
except KeyboardInterrupt:
break
--
http://mail.python.org/mailman/listinfo/python-list
