This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Created pod/perldeprecation.pod
[perl5.git] / pod / perldeprecation.pod
CommitLineData
9021a1cf
A
1=head1 NAME
2
3perldeprecation - list Perl deprecations
4
5=head1 DESCRIPTION
6
7The purpose of this document is to document what has been deprecated
8in Perl, and by which version the deprecated feature will disappear,
9or, for already removed features, when it was removed.
10
11This document will try to discuss what alternatives for the deprecated
12features are available.
13
14The deprecated features will be grouped by the version of Perl in
15which they will be removed.
16
17=head2 Perl 5.24
18
19=head3 Use of C<< *glob{FILEHANDLE} >>
20
21The use of C<< *glob{FILEHANDLE} >> was deprecated in perl 5.008.
22The intention was to use C<< *glob{IO} >> instead, for which
23C<< *glob{FILEHANDLE} >> is an alias.
24
25However, this feature was undeprecated in perl 5.24.0.
26
27=head1 SEE ALSO
28
29L<warnings>, L<diagnostics>.
30
31=cut