Graham Knop

Results 227 comments of Graham Knop

Given the choice between the 5.38 and 5.40 behaviors, I think I would prefer to revert to 5.38. If a closure doesn't capture a lexical, it can't expect it to...

The changes to EUMM should be removed from this PR, since that will be handled separately. Making this change, along with the EUMM change, is likely to break a number...

I've finally gotten around to releasing a new Syntax::Keyword::Junction that fixes the smartmatch usage.

smartmatch was brought back, and all of the dists mentioned in this issue are now working (aside from Type::Tiny, but that is a problem with MooseX::Types).

Taking a quick look at CPAN, most uses of this construct are intentionally comparing booleans, so this warning would be a false positive.

This problem will impact users of autodie as well. I'm not sure I really like the change to attempt to fix #22385. Requiring a literal undef for this kind of...

Opening a temp file with a `

> > This problem will impact users of autodie as well. > > Could you provide an example of the problem `autodie` users will encounter? Until this change, you could...

> ``` > @_ > 2 ? open($_[0], $_[1], $_[2] // undef) : > ``` No, this will not work. The third parameter is an expression, not a literal undef,...