We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8b6e16 commit 00ed8b7Copy full SHA for 00ed8b7
Changes
@@ -1,6 +1,7 @@
1
Revision history for Module-Metadata
2
3
{{$NEXT}}
4
+- Clarify that __clean_eval does not include strict or warnings
5
6
1.000037 2019-09-07 18:32:44Z
7
- add decode_pod option for automatic =encoding handling
lib/Module/Metadata.pm
@@ -10,7 +10,7 @@ package Module::Metadata;
10
# perl modules (assuming this may be expanded in the distant
11
# parrot future to look at other types of modules).
12
13
-sub __clean_eval { eval $_[0] }
+sub __clean_eval { no strict; no warnings; eval $_[0] }
14
use strict;
15
use warnings;
16
0 commit comments