summaryrefslogtreecommitdiff
path: root/pod/perldelta.pod
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2002-05-06 18:17:00 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-06 15:29:58 +0000
commit159ad9158da627b6008687c4cd6aaaa0f0c7d16f (patch)
tree3098413e628a2bdd7ee1a8961849114bcf48fb71 /pod/perldelta.pod
parent536cc2c14e13822cdd93e5b1aef6723e848db3fd (diff)
downloadperl-159ad9158da627b6008687c4cd6aaaa0f0c7d16f.tar.gz
Re: [proposed PATCH] correctly unlocalise exists on tied/%ENV
Message-ID: <20020506171700.A256@fdgroup.com> p4raw-id: //depot/perl@16434
Diffstat (limited to 'pod/perldelta.pod')
-rw-r--r--pod/perldelta.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 920d74e041..2a32e9347d 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -544,8 +544,8 @@ errors so consider starting laundering now.
=item *
-Tied hash interfaces are now required to have the EXISTS method
-(either own or inherited).
+Tied hash interfaces are now required to have the EXISTS and DELETE
+methods (either own or inherited).
=item *
@@ -1946,8 +1946,8 @@ Localised tied variables no more leak memory
=item *
-Localised hash elements are correctly unlocalised to not to exist,
-if that's what they where.
+Localised hash elements (and %ENV) are correctly unlocalised to not to
+exist, if that's what they where.
use Tie::Hash;
@@ -1963,7 +1963,7 @@ if that's what they where.
# but no more so.
As a side effect of this fix, tied hash interfaces B<must> define
-the EXISTS method.
+the EXISTS and DELETE methods.
=item *