Skip Menu |

This queue is for tickets about the PPR CPAN distribution.

Report information
The Basics
Id: 125675
Status: resolved
Priority: 0/
Queue: PPR

People
Owner: Nobody in particular
Requestors: a.r.ferreira [...] gmail.com
Cc:
AdminCc:

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



Subject: Mistake in _uniq()
Date: Sun, 24 Jun 2018 12:53:20 -0700
To: bug-ppr [...] rt.cpan.org
From: Adriano Ferreira <a.r.ferreira [...] gmail.com>
A mistake slipped by in the latest PPR release – wouldn't it be sub _uniq { my %seen; return grep {!$seen{$_}++} @_; } rather than sub _uniq { my %seen; return grep {!$seen{$_}} @_; } in https://metacpan.org/source/DCONWAY/PPR-0.000017/lib/PPR.pm#L1885 and https://metacpan.org/source/DCONWAY/PPR-0.000017/lib/PPR/X.pm#L1800 ?

Message body is not shown because it is too large.

Subject: Re: [rt.cpan.org #125675] Mistake in _uniq()
Date: Mon, 25 Jun 2018 09:57:31 +1000
To: bug-PPR [...] rt.cpan.org
From: Damian Conway <damian [...] conway.org>
Oops! Well spotted! Fixed for the next release. Many thanks! Damian