Subject: | Attribute::Handlers::findsym crashes on perl-5.10.0 |
perl-5.10.0 has apparently made some changes in the way namespaces work.
The change boils down like this:
perl5.8.8 -e 'use IO::File; foreach my $sym (values %{"IO::File::"}) {
print(*{$sym}, "\n"); }'
*IO::File::O_LARGEFILE
*IO::File::qualify
*IO::File::O_NOCTTY
[etc etc]
perl5.10.0 -e 'use IO::File; foreach my $sym (values %{"IO::File::"}) {
print(*{$sym}, "\n"); }'
Not a GLOB reference at -e line 1.
Attribute::Handlers::findsym() uses this same mechanism, and dies with
the same error.