http://qs321.pair.com?node_id=931567


in reply to Switch Module on Perl 5.8.0

Howdy!

Switch is a source filter, so that comes with extra-crunchy behavior at times. I'm not up on the fine details of where it will bite you, but that may be the case. What do you get from Deparse when you comment out "use Switch", etc.? The results you show certainly raise eyebrows.

yours,
Michael

Replies are listed 'Best First'.
Re^2: Switch Module on Perl 5.8.0
by bichonfrise74 (Vicar) on Oct 14, 2011 at 18:35 UTC
    This is the output from Deparse when the 'use Switch' is commented out.
    die "Error: $!" unless open my $fh, '<', '/tmp/test_file.txt'; while (defined(my $line = <$fh> )) { print "$line\n"; } close $fh;
    When I saw this, I thought maybe the Switch module was adding the File::Glob statement but when I scanned the Switch module, I didn't immediately see why it would even do such a thing.