diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-06-27 16:40:10 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-06-27 16:40:10 +0000 |
commit | 13201e38d406ff98a98fa209237f36b0a2beb8e5 (patch) | |
tree | 4336cf4281575e82e2741f287941a0d4eb4c9a00 /lib/bigrat.pm | |
parent | c8ab6ea16e62f8a4c2caf5d6b6f57d1f5fb3b685 (diff) | |
download | perl-13201e38d406ff98a98fa209237f36b0a2beb8e5.tar.gz |
Revert change #31480. The PI and e functions can accept an argument.
p4raw-link: @31480 on //depot/perl: c8ab6ea16e62f8a4c2caf5d6b6f57d1f5fb3b685
p4raw-id: //depot/perl@31481
Diffstat (limited to 'lib/bigrat.pm')
-rw-r--r-- | lib/bigrat.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bigrat.pm b/lib/bigrat.pm index b5fb267229..e185d4f0bc 100644 --- a/lib/bigrat.pm +++ b/lib/bigrat.pm @@ -226,8 +226,8 @@ sub import } } -sub PI () { local $Math::BigFloat::upgrade = undef; Math::BigFloat::bpi(@_); } -sub e () { local $Math::BigFloat::upgrade = undef; Math::BigFloat->bone()->bexp(@_); } +sub PI { local $Math::BigFloat::upgrade = undef; Math::BigFloat::bpi(@_); } +sub e { local $Math::BigFloat::upgrade = undef; Math::BigFloat->bone()->bexp(@_); } 1; |