Code Feedback

Dan M dan at wolf.com
Mon Feb 6 16:37:34 EST 2006


> 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





More information about the Python-list mailing list