From: Steffen Mueller Date: Mon, 21 Sep 2009 14:58:49 +0000 (+0200) Subject: Deprecate Class::ISA from core X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3129f539412cb3df48f5c2a95d2b33b38af7e89f;p=p5sagit%2Fp5-mst-13.2.git Deprecate Class::ISA from core --- diff --git a/ext/Class-ISA/lib/Class/ISA.pm b/ext/Class-ISA/lib/Class/ISA.pm index e137191..d25da58 100644 --- a/ext/Class-ISA/lib/Class/ISA.pm +++ b/ext/Class-ISA/lib/Class/ISA.pm @@ -5,9 +5,11 @@ package Class::ISA; require 5; use strict; use vars qw($Debug $VERSION); -$VERSION = '0.33'; +$VERSION = '0.33_01'; $Debug = 0 unless defined $Debug; +use if $] >= 5.011, 'deprecate'; + =head1 NAME Class::ISA -- report the search path for a class's ISA tree diff --git a/ext/Class-ISA/t/01_old_junk.t b/ext/Class-ISA/t/01_old_junk.t index 8afe373..d550bcb 100644 --- a/ext/Class-ISA/t/01_old_junk.t +++ b/ext/Class-ISA/t/01_old_junk.t @@ -1,6 +1,6 @@ BEGIN { chdir 't' if -d 't'; - @INC = '../lib'; + #@INC = '../lib'; } # Time-stamp: "2004-12-29 19:59:33 AST"