perl 5.003_03: lib/Symbol.pm
Perl 5 Porters [Fri, 26 Apr 1996 00:57:26 +0000 (00:57 +0000)]
Put back in the BEGIN { require 5.002; }.  The version in
5.003_02 wouldn't work in 5.002 anyway.  Further, the whole
point of the construct is to catch 5.001m, so we can't use
syntax introduced after 5.001m to do that.

lib/Symbol.pm

index 3f99fc5..67808af 100644 (file)
@@ -46,7 +46,7 @@ which are qualified by their nature.
 
 =cut
 
-use 5.002;
+BEGIN { require 5.002; }
 
 require Exporter;
 @ISA = qw(Exporter);