add export tag :all and tweak SYNOPSIS
Barrie Slaymaker [Tue, 27 Nov 2001 10:58:54 +0000 (05:58 -0500)]
Message-ID: <20011127105850.B696@sizzle.whoville.com>

p4raw-id: //depot/perl@13321

lib/Benchmark.pm

index 9de9974..3f8eb62 100644 (file)
@@ -6,6 +6,8 @@ Benchmark - benchmark running times of Perl code
 
 =head1 SYNOPSIS
 
+    use Benchmark qw(:all) ;
+
     timethis ($count, "code");
 
     # Use Perl code in strings...
@@ -402,8 +404,9 @@ use Exporter;
 @EXPORT=qw(timeit timethis timethese timediff timestr);
 @EXPORT_OK=qw(timesum cmpthese countit
              clearcache clearallcache disablecache enablecache);
+%EXPORT_TAGS=( all => [ @EXPORT, @EXPORT_OK ] ) ;
 
-$VERSION = 1.02;
+$VERSION = 1.03;
 
 &init;