Skip to content
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

Can use feature ':all' be removed or improved? #23095

Open
book opened this issue Mar 9, 2025 · 4 comments
Open

Can use feature ':all' be removed or improved? #23095

book opened this issue Mar 9, 2025 · 4 comments

Comments

@book
Copy link
Contributor

book commented Mar 9, 2025

As discussed in PSC meeting #179, the Perl Steering Council would like use feature ':all' to go away if possible.

It was never a good idea anyway, and has become untenable with the introduction of feature flags like indirect and bareword_filehandles, which disable features that are considered obsolete. We expect to have many more of those in the future (v5.42 is going to include apostrophe_as_package_separator and smartmatch).

Since the purpose of those features is to be disabled rather than enabled by default, a simple toggling of all features (on or off) is a nonsensical request.

Usage seems to be very limited on CPAN. https://grep.metacpan.org/search?size=20&_bb=456911623&q=use+feature+.*%3Aall&qd=&qft=&qifl= reports:

Result: found 21 distributions and 60 files matching your query !

And in core, it's only used in tests (and documentation for use feature itself):

$ git grep -l 'use feature.*:all'
lib/B/Deparse.t
lib/feature.pm
regen/feature.pl
t/comp/require.t
t/op/svleak.t

Maybe anothe option for :all would be to only enable the "positive" features
(experimental and enabled in the current version of Perl)? This would have
the benefit of being backwards compatible, and would solve the "nonsensical"
part that re-enables deprecated features. I don't doubt it introduces different issues.

@jkeenan
Copy link
Contributor

jkeenan commented Mar 9, 2025

While I share your sentiments, I think that this is a policy discussion which ought to first take place on the mailing list. Suggesting that a feature either be removed or improved is a bit too open-ended for treatment as an Issue.

@Leont
Copy link
Contributor

Leont commented Mar 9, 2025

Usage seems to be very limited on CPAN. https://grep.metacpan.org/search?size=20&_bb=456911623&q=use+feature+.*%3Aall&qd=&qft=&qifl= reports:

It seems 18 out of 20 cases are from just two authors. The other two are both meta-pragmas, and in one of these two is used in the documentation only.

@tonycoz
Copy link
Contributor

tonycoz commented Mar 10, 2025

I have code that uses the :all bundle to switch all features off so I can get just the features from a versioned bundle, since use feature ":5.32" does not turn off "indirect" etc, i.e.:

# in a "sane defaults" module import():
feature->unimport(":all");
feature->import(":5.32");

Inline I could just do:

use v5.32;

but that won't work from a sane defaults module import method.

@Grinnz
Copy link
Contributor

Grinnz commented Mar 12, 2025

Perhaps we need a better way for things using feature.pm directly to cleanly set a feature bundle.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants