[perl #58854] Lexicals workaround for gather

2008-09-15 Thread via RT
# New Ticket Created by Stephen Weeks # Please include the string: [perl #58854] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=58854 I'm adding a workaround in gather for the lexicals issue discussed in rt #56512.

Re: [perl #58744] Hashes flatten lists

2008-09-15 Thread Vasily Chekalkin
Patrick R. Michaud wrote: that should have been [b, c] on the second line Now fixed in r30967. The problem is that the .kv method was always stringifying the values of the output list. To illustrate: .values still stringifying values. Trivial patch attached. -- Bacek. diff --git

Re: [perl #58526] pick(*) is broken on nested arrays in Rakudo

2008-09-15 Thread Moritz Lenz
Carl MXXsak (via RT) wrote: # New Ticket Created by Carl Mäsak # Please include the string: [perl #58526] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=58526 r30698: $ ./perl6 -e 'say [1,2,3,4,5,6].pick(*)'

Re: [perl #58526] pick(*) is broken on nested arrays in Rakudo

2008-09-15 Thread Patrick R. Michaud
On Tue, Sep 16, 2008 at 12:03:28AM +0200, Moritz Lenz wrote: Carl Masak (via RT) wrote: r30698: $ ./perl6 -e 'say [1,2,3,4,5,6].pick(*)' # expected 645213 $ ./perl6 -e 'say [[1,2,3],[4,5,6]].pick(*)' # strange... 1234 $ ./perl6 -e 'say [[1,2,3],[4,5,6]].pick(*)' # ... 4561