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


in reply to Re^2: How can I see a CPAN module's print message
in thread How can I see a CPAN module's print message

Also consider that Perl will load the first file TieRegistry.pm it finds in @INC. Inspect the values of %INC to find out which file Perl loaded, and which one you edited. See perlvar and Data::Dumper.

use TieRegistry; print Dumper \%INC;