[perl6/specs] 177028: S05 typo

2011-10-13 Thread noreply
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 177028647da7b945137d181983e61f202be603f0 https://github.com/perl6/specs/commit/177028647da7b945137d181983e61f202be603f0 Author: diakopter Date: 2011-10-13 (Thu, 13 Oct 2011) Changed paths: M S05-reg

[perl #78026] [BUG] Stringifying the result of a Zxx operation exposes what is probably a variation of the take bug in Rakudo

2011-10-13 Thread Carl Mäsak via RT
On Fri Sep 24 06:25:32 2010, masak wrote: > rakudo: say ( Zxx 0,1,0,1,0) # via TimToady, backlog > rakudo 5e7b43: OUTPUT«bd␤» > rakudo: say ( Zxx 0,1,0,1,0).Str > rakudo 5e7b43: OUTPUT«e e␤» > * masak submits rakudobug > looks like a variation of the take bug again > aye. > rakudo: say ( e

[perl #101316] [BUG] &take flattens arrays in Rakudo

2011-10-13 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #101316] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=101316 > perl6: say .perl for (gather for 1, 2, 3 -> $a { for -> $b { take [$a, $b] } })

Re: [perl #78626] Patch: support higher arity in reduce()

2011-10-13 Thread Moritz Lenz
Am 13.10.2011 06:01, schrieb smos...@loveandhotsauce.net: That's fine, I think it was already shot down owing to the supposedly dubious utility of supporting higher arities in .reduce() By the way, I submitted the patch because the error message had (and still has) the "for now" wording when you

Re: [perl #78626] Patch: support higher arity in reduce()

2011-10-13 Thread smosher
Hi, That's fine, I think it was already shot down owing to the supposedly dubious utility of supporting higher arities in .reduce() By the way, I submitted the patch because the error message had (and still has) the "for now" wording when you try any other arity. But after I submitted the

[perl #101296] [BUG] Null PMC access when accessing type object belonging to an outer role from within an inner class in Rakudo

2011-10-13 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #101296] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=101296 > nom: role A[$B] { class C { method foo() { say $B } }; method bar { C.foo } }; c