In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/e0de7c21b08329275a76393ac4d80aae90ac428e?hp=f8a89dce5f8554403092f97a6adeeecf9f8ec2d5>
- Log ----------------------------------------------------------------- commit e0de7c21b08329275a76393ac4d80aae90ac428e Author: Ricardo Signes <[email protected]> Date: Tue Jul 6 11:41:53 2010 -0400 cautionary note about "no VERSION" Signed-off-by: David Golden <[email protected]> ----------------------------------------------------------------------- Summary of changes: pod/perlfunc.pod | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index c86af43..b6ded9b 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -7283,6 +7283,11 @@ or no unimport method being found. no strict 'refs'; no warnings; +Care should be taken when using the C<no VERSION> form of C<no>. It is +I<only> meant to be used to assert that the running perl is of a earlier +version than its argument and I<not> to undo the feature-enabling side effects +of C<use VERSION>. + See L<perlmodlib> for a list of standard modules and pragmas. See L<perlrun> for the C<-M> and C<-m> command-line options to Perl that give C<use> functionality from the command-line. -- Perl5 Master Repository
