summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/autodie.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/autodie.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/autodie.pm14
1 files changed, 11 insertions, 3 deletions
diff --git a/Master/tlpkg/tlperl/lib/autodie.pm b/Master/tlpkg/tlperl/lib/autodie.pm
index 71a6a5e7616..ed5a612efee 100644
--- a/Master/tlpkg/tlperl/lib/autodie.pm
+++ b/Master/tlpkg/tlperl/lib/autodie.pm
@@ -7,8 +7,10 @@ use Fatal ();
our @ISA = qw(Fatal);
our $VERSION;
+# ABSTRACT: Replace functions with ones that succeed or die with lexical scope
+
BEGIN {
- $VERSION = '2.13';
+ our $VERSION = '2.23'; # VERSION: Generated by DZP::OurPkg::Version
}
use constant ERROR_WRONG_FATAL => q{
@@ -185,6 +187,8 @@ The categories are currently:
:file
binmode
close
+ chmod
+ chown
fcntl
fileno
flock
@@ -251,7 +255,7 @@ The syntax:
allows the C<:default> list from a particular version to be used. This
provides the convenience of using the default methods, but the surety
-that no behavorial changes will occur if the C<autodie> module is
+that no behavioral changes will occur if the C<autodie> module is
upgraded.
C<autodie> can be enabled for all of Perl's built-ins, including
@@ -261,6 +265,10 @@ C<system> and C<exec> with:
=head1 FUNCTION SPECIFIC NOTES
+=head2 print
+
+The autodie pragma B<<does not check calls to C<print>>>.
+
=head2 flock
It is not considered an error for C<flock> to return false if it fails
@@ -423,6 +431,6 @@ Mark Reed and Roland Giersig -- Klingon translators.
See the F<AUTHORS> file for full credits. The latest version of this
file can be found at
-L<http://github.com/pfenwick/autodie/tree/master/AUTHORS> .
+L<https://github.com/pjf/autodie/tree/master/AUTHORS> .
=cut