Skip to content

clearly state from which feature bundles onwards the "unfeatures" are disabled #23378

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: blead
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions lib/feature.pm

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 9 additions & 6 deletions regen/feature.pl
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ sub longest {

__END__
package feature;
our $VERSION = '1.96';
our $VERSION = '1.97';

FEATURES

Expand Down Expand Up @@ -733,7 +733,8 @@ =head2 The 'switch' feature
See L<perlsyn/"Switch Statements"> for details.

This feature is available starting with Perl 5.10. It is enabled by
feature bundles 5.10 through 5.34.
feature bundles 5.10 through 5.34, and disabled from the 5.36 feature
bundle onwards.

=head2 The 'unicode_strings' feature

Expand Down Expand Up @@ -951,7 +952,7 @@ =head2 The 'indirect' feature
This feature is available under this name from Perl 5.32 onwards. In
previous versions, it was simply on all the time. To disallow (or
warn on) indirect object syntax on older Perls, see the L<indirect>
CPAN module.
CPAN module. It is disabled from the 5.36 feature bundle onwards.

=head2 The 'multidimensional' feature

Expand All @@ -965,7 +966,8 @@ =head2 The 'multidimensional' feature
will report a compilation error.

This feature is available under this name from Perl 5.34 onwards. In
previous versions, it was simply on all the time.
previous versions, it was simply on all the time. It is disabled from
the 5.36 feature bundle onwards.

You can use the L<multidimensional> module on CPAN to disable
multidimensional array emulation for older versions of Perl.
Expand All @@ -981,7 +983,8 @@ =head2 The 'bareword_filehandles' feature
C<ARGV>, C<ARGVOUT> and the special C<_> are always enabled.

This feature is available under this name from Perl 5.34 onwards. In
previous versions it was simply on all the time.
previous versions it was simply on all the time. It is disabled from
the 5.38 feature bundle onwards.

You can use the L<bareword::filehandles> module on CPAN to disable
bareword filehandles for older versions of perl.
Expand Down Expand Up @@ -1066,7 +1069,7 @@ =head2 The 'apostrophe_as_package_separator' feature
This feature enables use C<'> (apostrophe) as an alternative to using
C<::> as a separate in package and other global names.

This is enabled by default, but disabled from the 5.41 feature bundle
This is enabled by default, but disabled from the 5.42 feature bundle
onwards. In previous versions it was enabled all the time.

This only disables C<'> in symbols in your source code, the internal
Expand Down
Loading