コード例 #1
0
	def test_on_off(self):
		tracestack.on()
		self.assertIsNot(sys.excepthook, sys.__excepthook__)
		self.assertTrue(isinstance(sys.excepthook, 
								   tracestack.handler.ExceptionHandler))
		tracestack.off()
		self.assertIs(sys.excepthook, sys.__excepthook__)
コード例 #2
0
 def test_on_off(self):
     tracestack.on()
     self.assertIsNot(sys.excepthook, sys.__excepthook__)
     self.assertTrue(
         isinstance(sys.excepthook, tracestack.handler.ExceptionHandler))
     tracestack.off()
     self.assertIs(sys.excepthook, sys.__excepthook__)
コード例 #3
0
ファイル: decorators.py プロジェクト: danrobinson/tracestack
 def wrapper(*args, **kwargs):
     tracestack.on(*handler_args, **handler_kwargs)
     result = func(*args, **kwargs)
     tracestack.off()
     return result
コード例 #4
0
ファイル: decorators.py プロジェクト: swipswaps/tracestack
 def wrapper(*args, **kwargs):
     tracestack.on(*handler_args, **handler_kwargs)
     result = func(*args, **kwargs)
     tracestack.off()
     return result