-
Notifications
You must be signed in to change notification settings - Fork 560
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bufs in Safe #109
Comments
From [email protected] use Safe; my $DO_STRICT = 1; my $box = new Safe("Eval"); @codes = ( for $code (@codes) { Produces this output. Some of it is suspect. Running code #1: $var->{'z'} = 12 Running code #2: defined $var->{'z'} Running code #3: $var = {} Running code #4: $var->{'y'} =~ /letter/ Running code #5: $var->{'z'} + 3 Running code #6: unlink $fred Running code #7: $var->{a}{b}{c} Running code #8: while (1) { } Running code #9: last Running code #10: return Running code #11: do 'grinch' Running code #12: require Help Issues: Test code 1: Why did the strict stuff leak out stderr, dang it!? Test code 2: Why did this autovivify and not trigger the Test code 6: More evil strict leakage out stderr. Text code 8: I wrote it this way to show that it was not permissible, What do you think? This strict leakage is a real super pain. --tom -- |
Migrated from rt.perl.org#913 (status was 'resolved')
Searchable as RT913$
The text was updated successfully, but these errors were encountered: