diff options
Diffstat (limited to 'cpan/autodie/lib/autodie.pm')
-rw-r--r-- | cpan/autodie/lib/autodie.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cpan/autodie/lib/autodie.pm b/cpan/autodie/lib/autodie.pm index cb14fb037b..95a940c178 100644 --- a/cpan/autodie/lib/autodie.pm +++ b/cpan/autodie/lib/autodie.pm @@ -8,7 +8,7 @@ our @ISA = qw(Fatal); our $VERSION; BEGIN { - $VERSION = '2.10'; + $VERSION = '2.11'; } use constant ERROR_WRONG_FATAL => q{ @@ -334,6 +334,10 @@ the end of the current block with C<no autodie>. To disable autodie for only a single function (eg, open) use C<no autodie qw(open)>. +C<autodie> performs no checking of called context to determine whether to throw +an exception; the explicitness of error handling with C<autodie> is a deliberate +feature. + =item No user hints defined for %s You've insisted on hints for user-subroutines, either by pre-pending |