[issue38920] Audit events for unhandled exceptions

2019-12-02 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue38920] Audit events for unhandled exceptions

2019-11-28 Thread Steve Dower
Change by Steve Dower : -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue38920] Audit events for unhandled exceptions

2019-11-28 Thread Steve Dower
Steve Dower added the comment: New changeset bea33f5e1db6e4a554919a82894f44568576e979 by Steve Dower in branch 'master': bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisable hooks are invoked (GH-17392) https://github.com/python/cpython/commit/bea33f5e1db6e4a554919a82894f445

[issue38920] Audit events for unhandled exceptions

2019-11-28 Thread Steve Dower
Steve Dower added the comment: New changeset b74a6f14b94d36fb72b1344663e81776bf450847 by Steve Dower in branch '3.8': bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisablehook are invoked (GH-17392) https://github.com/python/cpython/commit/b74a6f14b94d36fb72b1344663e81776bf45

[issue38920] Audit events for unhandled exceptions

2019-11-26 Thread Steve Dower
Steve Dower added the comment: +Victor in case you'd like to check my changes to the unraisable hook implementation. -- nosy: +vstinner ___ Python tracker ___ ___

[issue38920] Audit events for unhandled exceptions

2019-11-26 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +16875 pull_request: https://github.com/python/cpython/pull/17393 ___ Python tracker ___ _

[issue38920] Audit events for unhandled exceptions

2019-11-26 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +16874 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/17392 ___ Python tracker _

[issue38920] Audit events for unhandled exceptions

2019-11-26 Thread Steve Dower
Change by Steve Dower : -- assignee: -> steve.dower ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue38920] Audit events for unhandled exceptions

2019-11-26 Thread Steve Dower
New submission from Steve Dower : We currently have no audit events for unhandled exceptions. While these can be recorded by sys.excepthook or sys.unraisablehook in Python code, there is no way to intercept them from C code set up before running Python code. There's also no way to collect inf