summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-12-17 13:20:45 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-12-17 13:20:45 +0000
commit0e44e2ed98933c59fd87dadd476ced988d634c10 (patch)
treeb9af659378bcf9e3c01a8d6d3694edc529b843cf
parent3cdbe49c1b448e17c64dba2d0570b2a122234c21 (diff)
downloadperl-0e44e2ed98933c59fd87dadd476ced988d634c10.tar.gz
Mention that ::ISA::CACHE:: no longer exists
p4raw-id: //depot/perl@32625
-rw-r--r--pod/perl5100delta.pod5
1 files changed, 4 insertions, 1 deletions
diff --git a/pod/perl5100delta.pod b/pod/perl5100delta.pod
index 178a72fd2a..cf90dc939c 100644
--- a/pod/perl5100delta.pod
+++ b/pod/perl5100delta.pod
@@ -260,7 +260,10 @@ available: the C3 algorithm. See L<mro> for more information.
Note that, due to changes in the implementation of class hierarchy search,
code that used to undef the C<*ISA> glob will most probably break. Anyway,
undef'ing C<*ISA> had the side-effect of removing the magic on the @ISA
-array and should not have been done in the first place.
+array and should not have been done in the first place. Also, the
+cache C<*::ISA::CACHE::> no longer exists; to force reset the @ISA cache,
+you now need to use the C<mro> API, or more simply to assign to @ISA
+(e.g. with C<@ISA = @ISA>).
=head2 readdir() may return a "short filename" on Windows