0

Pythonスレッドで例外をうまくキャプチャするにはどうすればよいですか?

スレッド化されたPythonアプリがあるsys.excepthook場合、子のエラーはキャプチャされません。

子が例外を発生させた場合、親は問題なく実行を継続するため、デバッグが少し難しくなります。

4

1 に答える 1

1
import os
import sys
import signal
import string
import threading


# capture Exceptions
def except_catch(type, value, track, thread):
  import traceback

  rawreport = traceback.format_exception(type, value, track)
  report = "\n" . join(rawreport)

  errorlog = open("errors.log", "a")

  if thread != "":
    errorlog.write("Exception in thread: " + thread + "\n\n")

  errorlog.write(("%s\n" + "-" * 30 + "\n\n") % report)

  errorlog.close()
sys.excepthook = except_catch


# capture KeyboardInterrupt
def interrupt_catch(signal, frame):
  print ""
  os._exit(1)
signal.signal(signal.SIGINT, interrupt_catch)


# all your threaded code here
def whatever_threaded_function():
  try:
    a = 1 / 0

  except:
    exc_type, exc_value, exc_traceback = sys.exc_info()
    except_catch(exc_type.__name__, exc_value, exc_traceback, threading.current_thread().name)


threading.Thread(target=whatever_threaded_function).start()
于 2012-09-15T01:33:09.727 に答える