From 4b3db487f2a64105d4cb4cbb187011b49745df03 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Wed, 8 Jul 2009 11:58:41 +0200 Subject: [PATCH] Mention in perldelta that "use 5.011" enables strictures --- pod/perl5110delta.pod | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pod/perl5110delta.pod b/pod/perl5110delta.pod index b6f8619..e9e9efa 100644 --- a/pod/perl5110delta.pod +++ b/pod/perl5110delta.pod @@ -129,6 +129,19 @@ line match modifier C. (If C<\N> is followed by an opening brace and by a letter, perl will still assume that a Unicode character name is coming, so compatibility is preserved.) (Rafael Garcia-Suarez) +=head2 Implicit strictures + +Using the C syntax with a version number greater or equal +to 5.11.0 will also lexically enable strictures just like C +would do (in addition to enabling features.) So, the following: + + use 5.11.0; + +will now imply: + + use strict; + use feature ':5.11'; + =head2 Parallel tests The core distribution can now run its regression tests in parallel on -- 2.7.4