On Mon, Dec 15, 2008 at 9:03 AM, Fuzzyman <fuzzy...@gmail.com> wrote:
> It seems to me to be a generally accepted term when an application
> stops due to an unhandled error to say that it crashed.

it == application
Yes.

--------------------

#!/usr/bin/env python

from traceback import format_exc

def foo():
  print "Hello World!"

def main():
  try:
     foo()
  except Exception, error:
     print "ERROR: %s" % error
     print format_exc()

if __name__ == "__main__":
  main()

--------------------

--JamesMills
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to