238 def excepthook(excType, excValue, tracebackobj): |
238 def excepthook(excType, excValue, tracebackobj): |
239 """ |
239 """ |
240 Global function to catch unhandled exceptions. |
240 Global function to catch unhandled exceptions. |
241 |
241 |
242 @param excType exception type |
242 @param excType exception type |
|
243 @type Class |
243 @param excValue exception value |
244 @param excValue exception value |
|
245 @type Exception |
244 @param tracebackobj traceback object |
246 @param tracebackobj traceback object |
|
247 @type Traceback |
245 """ |
248 """ |
246 from eric7 import Globals, Utilities |
249 from eric7 import Globals, Utilities |
247 from eric7.UI.Info import BugAddress |
250 from eric7.UI.Info import BugAddress |
248 |
251 |
249 # Workaround for a strange issue with QScintilla |
252 # Workaround for a strange issue with QScintilla |