-
Notifications
You must be signed in to change notification settings - Fork 571
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
Comments
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. |
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. |
I have code that uses the
Inline I could just do:
but that won't work from a sane defaults module import method. |
Perhaps we need a better way for things using feature.pm directly to cleanly set a feature bundle. |
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
andbareword_filehandles
, which disable features that are considered obsolete. We expect to have many more of those in the future (v5.42 is going to includeapostrophe_as_package_separator
andsmartmatch
).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:
And in core, it's only used in tests (and documentation for
use feature
itself):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.
The text was updated successfully, but these errors were encountered: