Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
125 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
185 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. ...
6
votes
2answers
163 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 ...
4
votes
3answers
259 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?
2
votes
2answers
139 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 ...