summaryrefslogtreecommitdiff
path: root/dist/bignum
diff options
context:
space:
mode:
authorFlorian Ragwitz <rafl@debian.org>2010-09-04 15:03:47 +0200
committerFlorian Ragwitz <rafl@debian.org>2010-09-04 15:03:47 +0200
commite2276cfd2d2189b929a266b87ad01681b6793010 (patch)
treea3d84715949ab5df37d1300176554da1f2da3d72 /dist/bignum
parent49f8dfb64c1d8667b2e8eb706ff6148917608d37 (diff)
downloadperl-e2276cfd2d2189b929a266b87ad01681b6793010.tar.gz
Synchronize with bignum 0.24
Diffstat (limited to 'dist/bignum')
-rw-r--r--dist/bignum/lib/bigint.pm2
-rw-r--r--dist/bignum/lib/bignum.pm2
-rw-r--r--dist/bignum/lib/bigrat.pm2
-rw-r--r--dist/bignum/t/bninfnan.t9
4 files changed, 4 insertions, 11 deletions
diff --git a/dist/bignum/lib/bigint.pm b/dist/bignum/lib/bigint.pm
index e143af61d0..2e36213328 100644
--- a/dist/bignum/lib/bigint.pm
+++ b/dist/bignum/lib/bigint.pm
@@ -1,7 +1,7 @@
package bigint;
use 5.006;
-$VERSION = '0.23';
+$VERSION = '0.24';
use Exporter;
@ISA = qw( Exporter );
@EXPORT_OK = qw( PI e bpi bexp );
diff --git a/dist/bignum/lib/bignum.pm b/dist/bignum/lib/bignum.pm
index ae7ab1754b..f5055f4bbc 100644
--- a/dist/bignum/lib/bignum.pm
+++ b/dist/bignum/lib/bignum.pm
@@ -1,7 +1,7 @@
package bignum;
use 5.006;
-$VERSION = '0.23';
+$VERSION = '0.24';
use Exporter;
@ISA = qw( bigint );
@EXPORT_OK = qw( PI e bexp bpi );
diff --git a/dist/bignum/lib/bigrat.pm b/dist/bignum/lib/bigrat.pm
index 10e8057abd..89bcab3612 100644
--- a/dist/bignum/lib/bigrat.pm
+++ b/dist/bignum/lib/bigrat.pm
@@ -1,7 +1,7 @@
package bigrat;
use 5.006;
-$VERSION = '0.23';
+$VERSION = '0.24';
require Exporter;
@ISA = qw( bigint );
@EXPORT_OK = qw( PI e bpi bexp );
diff --git a/dist/bignum/t/bninfnan.t b/dist/bignum/t/bninfnan.t
index fbadb068b9..82bc22a3a7 100644
--- a/dist/bignum/t/bninfnan.t
+++ b/dist/bignum/t/bninfnan.t
@@ -9,14 +9,7 @@ BEGIN
{
$| = 1;
my $location = $0; $location =~ s/bninfnan.t//i;
- if ($ENV{PERL_CORE})
- {
- #@INC = qw(../lib ../lib/bignum/t); # testing with the core distribution
- }
- else
- {
- unshift @INC, '../lib'; # for testing manually
- }
+ unshift @INC, '../lib'; # for testing manually
if (-d 't')
{
chdir 't';