in reply to Strict, safely

That works fine for me here (v5.6.1 built for i386-linux). Which version of Safe are you using and are you using 5.6.0 or 5.6.1 (the output of perl -v would be helpful)? This doesn't appear to be an opcode issue as Safe usually issues a ... trapped by operation mask if there's a problem with the opcodes.
HTH

_________
broquaint

Replies are listed 'Best First'.
Re: Re: Strict, safely
by ViceRaid (Chaplain) on Jun 13, 2003 at 10:03 UTC

    No problems on:

    [alexf@localhost ~]$ perl -v This is perl, v5.8.0 built for i386-linux-thread-multi [alexf@localhost ~]$ perl -MSafe -e 'print $Safe::VERSION' 2.07

    but not happy on:

    [alexf@otherhost ~]$ perl -v This is perl, v5.6.1 built for sun4-solaris [alexf@otherhost ~]$ perl -MSafe -e 'print $Safe::VERSION' 2.06

    Thanks
    ViceRaid