pythonizer icon indicating copy to clipboard operation
pythonizer copied to clipboard

Enh: Implements signals and alarm()

Open snoopyjc opened this issue 3 years ago • 1 comments

Enhancement: Implements signals and alarm() and also anonymous sub's. Sample perl code:

$SIG{ALRM} = sub { die "timeout"; };
eval {
    alarm($TIME);
    ...
    alarm(0);
};
if($@ =~ /timeout/) {
    ...
}

snoopyjc avatar Dec 01 '21 14:12 snoopyjc

Fixed in https://github.com/snoopyjc/pythonizer

snoopyjc avatar Feb 07 '22 16:02 snoopyjc