Reviews by lorenzo.bellotti
RSS
Toolkit is a fantastic idea, but soffer a one limitation.
Suggest:
use Toolkit qw(::xxx::yyy);
in this mode not search the toolkit files in directory $PERL5LIB/Toolkit
but in directory $PERL5LIB/xxx/yyy/Toolkit
In this way does not pollute external namespace, useful for modules in cpan
Thank
this simple program:
perl -Mstrict -Mwarnings -e 'use autodie qw(:all); { no autodie qw(open); open(my $f,"<","pippo")} open (my $fd,"<","xxx")'
the open of file xxx not fail
perl version 5.14.2 on ubuntu 12.04 x86_64
autodie version 2.16