Skip to content
This repository was archived by the owner on Apr 17, 2026. It is now read-only.
This repository was archived by the owner on Apr 17, 2026. It is now read-only.

User-defined exception handlers set via sys.excepthook not executed in Ghidrathon #102

@fariss

Description

@fariss

User custom exception hooks set via sys.excepthook = <custom exception handler> are not executed in Ghidrathon. Though, this functionally works as intended in the builtin interpreter. See #101 (comment)

To repoduce this issue:

def my_exc_handler(type, value, traceback):
    print("This is a custom exception handler...")
    
import sys
sys.excepthook = my_exc_handler
raise Exception

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions