ext/List/Util/Makefile.PL Util extension
ext/List/Util/multicall.h Util extension
ext/List/Util/README Util extension
+ext/List/Util/t/00version.t Scalar::Util
ext/List/Util/t/blessed.t Scalar::Util
ext/List/Util/t/dualvar.t Scalar::Util
ext/List/Util/t/first.t List::Util
+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
--- /dev/null
+#!./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");
+
+