08ac55f0a1
update databases/p5-SQL-Translator. p5-strictures provides "strictures" directive. use strictures 1; is equivalent to use strict; use warnings FATAL => 'all'; except when called from a file where $0 matches: /^x?t\/.*(?:load|compile|coverage|use_ok).*\.t$/ and when either '.git' or '.svn' is present in the current directory.
14 lines
304 B
Text
14 lines
304 B
Text
p5-strictures provides "strictures" directive.
|
|
|
|
use strictures 1;
|
|
|
|
is equivalent to
|
|
|
|
use strict;
|
|
use warnings FATAL => 'all';
|
|
|
|
except when called from a file where $0 matches:
|
|
|
|
/^x?t\/.*(?:load|compile|coverage|use_ok).*\.t$/
|
|
|
|
and when either '.git' or '.svn' is present in the current directory
|