diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-10 13:45:44 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-07-10 13:45:44 +0000 |
commit | d0c93ae95d925e05df5353ae7c3d57a09e757774 (patch) | |
tree | 6434b90b079478bfc973cddf5a7caa18dda01b8a /pod/perl572delta.pod | |
parent | f2c0fa378e55ca42d398c29e02f5dc2fd742d1dc (diff) | |
download | perl-d0c93ae95d925e05df5353ae7c3d57a09e757774.tar.gz |
Mention package; deprecation and the Win32 problems.
p4raw-id: //depot/perl@11257
Diffstat (limited to 'pod/perl572delta.pod')
-rw-r--r-- | pod/perl572delta.pod | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/pod/perl572delta.pod b/pod/perl572delta.pod index 636c16ae20..199802deea 100644 --- a/pod/perl572delta.pod +++ b/pod/perl572delta.pod @@ -84,7 +84,7 @@ use of the first array element) is deprecated starting from Perl 5.8.0 and will be removed in Perl 5.10.0, and the feature will be implemented differently. Not only is the current interface rather ugly, but the current implementation slows down normal array and hash -use quite noticeably. The 'fields' pragma interface will remain +use quite noticeably. The C<fields> pragma interface will remain available. The syntaxes C<@a->[...]> and C<@h->{...}> have now been deprecated. @@ -93,6 +93,11 @@ The suidperl is also considered to be too much a risk to continue maintaining and the suidperl code is likely to be removed in a future release. +The C<package;> syntax (C<package> without an argument has been +deprecated. Its semantics were never that clear and its +implementation even less so. If you have used that feature to +disallow all but fully qualified variables, C<use strict;> instead. + =head1 Core Enhancements In general a lot of fixing has happened in the area of Perl's @@ -718,6 +723,11 @@ Compac C V6.4-005 on OpenVMS Alpha 7.2.1 [.op]misc...............................FAILED on test 49 Failed 6/401 tests, 92.77% okay. +=head2 Win32 + +In multi-CPU boxes there are some problems with the I/O buffering: +some output may appear twice. + =head2 Localising a Tied Variable Leaks Memory use Tie::Hash; |