Jifty-DBI
view release on metacpan or search on metacpan
lib/Jifty/DBI/Schema.pm view on Meta::CPAN
use Exporter::Lite ();
# TODO - This "sub import" is strictly here to catch the deprecated "length is 40".
# Once the deprecation cycle is over we should take the SIGDIE swapping away
my $old_sig_die;
sub import {
no warnings qw( uninitialized numeric );
$old_sig_die ||= $SIG{__DIE__};
$SIG{__DIE__} = \&filter_die unless $SIG{__DIE__} and $SIG{__DIE__} == \&filter_die;
strict->import;
warnings->import;
goto &Exporter::Lite::import;
}
=head2 filter_die
=cut
sub filter_die {
( run in 0.352 second using v1.01-cache-2.11-cpan-299005ec8e3 )