diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-11-26 12:04:00 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2005-11-26 12:04:00 +0000 |
commit | aee45414e5cecf8c3d4788d764cc010fc54d3dad (patch) | |
tree | 8d1f9c092cb7c655d10485f4848610883340d33d /ext/List/Util | |
parent | 6e770d9c3a08e9c537fed3a8d1bbb8879d74522d (diff) | |
download | perl-aee45414e5cecf8c3d4788d764cc010fc54d3dad.tar.gz |
Upgrade to Scalar-List-Utils-1.18
p4raw-id: //depot/perl@26212
Diffstat (limited to 'ext/List/Util')
-rw-r--r-- | ext/List/Util/Changes | 12 | ||||
-rw-r--r-- | ext/List/Util/t/00version.t | 22 |
2 files changed, 34 insertions, 0 deletions
diff --git a/ext/List/Util/Changes b/ext/List/Util/Changes index 4fbdc8b569..65e93e4389 100644 --- a/ext/List/Util/Changes +++ b/ext/List/Util/Changes @@ -1,3 +1,15 @@ +1.18 -- Fri Nov 25 09:30:29 CST 2005 + +Bug Fixes + * Fix pure-perl version of refaddr to avoid blessing an un-blessed reference + * Fix memory leak in first() and reduce() + * Pure perl version of looks_like_number now matches XS version for + references and undef. It will now return undef + +Enhancements + * Support for using XSLoader instead of DynaLoader + * Use new multicall API + 1.17 -- Mon May 23 08:55:26 CDT 2005 Bug Fixes diff --git a/ext/List/Util/t/00version.t b/ext/List/Util/t/00version.t new file mode 100644 index 0000000000..fad6e0f380 --- /dev/null +++ b/ext/List/Util/t/00version.t @@ -0,0 +1,22 @@ +#!./perl + +BEGIN { + unless (-d 'blib') { + chdir 't' if -d 't'; + @INC = '../lib'; + require Config; import Config; + keys %Config; # Silence warning + if ($Config{extensions} !~ /\bList\/Util\b/) { + print "1..0 # Skip: List::Util was not built\n"; + exit 0; + } + } +} + +use Scalar::Util (); +use List::Util (); +use Test::More tests => 1; + +is( $Scalar::Util::VERSION, $List::Util::VERSION, "VERSION mismatch"); + + |