Skip Menu |

This queue is for tickets about the List-MoreUtils CPAN distribution.

Report information
The Basics
Id: 102840
Status: resolved
Priority: 0/
Queue: List-MoreUtils

People
Owner: Nobody in particular
Requestors: JDDPAUSE [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.407
Fixed in: 0.408



Subject: uniq
Hello, the following snippet: --- #!env perl use strict; use diagnostics; use List::MoreUtils 0.407 qw/uniq/; use Data::Dumper; sub doY { "Y" } print Dumper([uniq(doY)]); print Dumper([uniq(my @tmp = doY)]); --- give in output, with version 0.407: $VAR1 = [ undef ]; $VAR1 = [ 'Y' ];
On 2015-03-17 18:27:01, ETHER wrote: Show quoted text
I'm starting to see failure reports flood in from everything that uses Moose, e.g.: http://www.cpantesters.org/cpan/report/f24dfdc8-ccf0-11e4-b221-9e126cbd7f71 http://www.cpantesters.org/cpan/report/683d54b8-ccdb-11e4-b221-9e126cbd7f71
Another test case: $ perl -MList::MoreUtils=uniq -le 'print $List::MoreUtils::VERSION; print for uniq map { $_ } qw(a b c)' 0.407 $ perl -MList::MoreUtils=uniq -le 'print $List::MoreUtils::VERSION; print for uniq map { $_ } qw(a b c)' 0.406 a b c