The autodie tag has no wiki summary.
2
votes
2answers
193 views
die like autodie
I use autodie to handle exceptions from built-ins. Unfortunately its scope is lexical, autodie does not work with methods. Is it possible to throw exceptions from my class methods so that they are ...
7
votes
3answers
373 views
How to use autodie with non-builtins?
The autodie documentation hints that it is possible to use it for other functions than those built-ins which it can handle by default, but there are no clear examples how to do that in it.
...
15
votes
1answer
205 views
Does the autodie-pragma have influence on the encoding?
Why do I get after the "autodie" a different output?
#!/usr/bin/env perl
use warnings;
use 5.012;
use utf8;
use open ':encoding(utf-8)';
use open ':std';
open my $fh, '>', 'test.txt' or die $!;
...
7
votes
3answers
358 views
Are there disadvantages to autodie?
Every now and again I see people on StackOverflow promote the use of autodie. But in the code here and elsewhere in the net I don't see autodie very often. Are there some disadvantages? Do I lose ...
5
votes
4answers
510 views
What is the difference between Perl modules autodie and Fatal?
The Perl modules autodie and Fatal seem to be doing similar things. What are the reasons for using one in preference to the other?