in reply to Re^2: Is it possible to make Data::BISON work on perl >= 5.10
in thread Is it possible to make Data::BISON work on perl >= 5.10

My guess is, from looking at Data::BISON::Base, as the error message says, that the following piece in the custom method creator is to blame:

... { local @ISA = @{ $caller . '::ISA' }; $self->SUPER::__parse_args( $args ); } ...

Most likely because the author didn't bother to clean up @ISA properly.

But then, looking at the whole code, I wouldn't touch it because I don't understand why the author chose to do all method creation in a import subroutine instead of plainly declaring the methods outside and then using glob assignments to export them. Maybe you want to get in contact with the author to ask about the motivation and intent.

Replies are listed 'Best First'.
Re^4: Is it possible to make Data::BISON work on perl >= 5.10
by Anonymous Monk on Dec 26, 2012 at 00:51 UTC
    I did manage to fix it by replacing the @ISA mess with
    __PACKAGE__->__parse_args($self, $args);
    I added a patch to the ticket, but I doubt the author will even look at it. He hasn't uploaded anything to CPAN in 2 years and has been ignoring all bug reports for his other modules for as long.