PPCs icon indicating copy to clipboard operation
PPCs copied to clipboard

This repository is for Requests For Comments - proposals to change the Perl language.

Results 20 PPCs issues
Sort by recently updated
recently updated
newest added

A reminder on the PPC process: Accepting this PR means we like the document, but it **does not** automatically imply that we accept the idea embodied by it. Accepting the...

Another PPC doc to add to the growing pile ;) As is traditional for me I didn't fill in the "Rationale" section as I still have no idea how that...

Update status of autodie that has been updated.

This proposes a new perlrun option flag that handles JSON input.

The different values for PPC status are somewhat inconsistent between the various documents in the docs/ directory, and the actual PPC documents. For example, "Accepted" in the process document means...

I've created a PPC that combines the ideas from both the [stringification](https://metacpan.org/release/PEVANS/stringification-0.01_004/view/lib/stringification.pm) module and [the GitHub thread about optional strictures](https://github.com/Perl/perl5/issues/18543). The PPC proposes a mechanism for adding optional strictures and...

Closes the existing "open issues" with regard to naming of the feature flag. Also opens one new issue to do with aliasing vs. copy of `$_`.

Given the following code ```perl @{ $possibly_undef?->[0] }[0..10] ``` What should happen if `$possibly_undef` is undef? had it been a chain, then it's obvious that the final slice operation would...

There is an initial successful attempt at - https://github.com/Perl/perl5/compare/blead...haukex:emperl5:emperl_v5.30.0 - https://webperl.zero-g.net/building.html - https://webperl.zero-g.net Supporting WebAssembly can help in some interop / legacy scenarios where it would be nice to run...

It would be nice if we could do: ```perl sub foo ([$x, $y]) { say "$x, $y"; } ``` ...instead of: ```perl sub foo ($pair) { my ($x, $y) =...