[perl6/specs] fd94c2: Allow false booleans into slice adverbs

2013-05-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: fd94c282259268cc02bfc46e7a4c52488f34f927 https://github.com/perl6/specs/commit/fd94c282259268cc02bfc46e7a4c52488f34f927 Author: Larry Wall Date: 2013-05-13 (Mon, 13 May 2013) Changed paths: M S02-bit

[perl #117975] [BUG] can not pop state anonymous array with repetition operator

2013-05-13 Thread via RT
# New Ticket Created by grond...@yahoo.fr # Please include the string: [perl #117975] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=117975 > This is perl6 version 2013.04-57-gb1695cf built on parrot 5.2.0 revision REL

Re: [perl #101440] [BUG] Closures created inside BEGIN blocks see the wrong outer lexpad in Rakudo

2013-05-13 Thread Eirik Berg Hanssen
On Sat, May 11, 2013 at 7:10 AM, Will Coleda via RT < perl6-bugs-follo...@perl.org> wrote: > On Sun Oct 16 03:56:13 2011, masak wrote: > > nom: my $c; my $name; BEGIN { $c = { say "OH HAI $name" } }; > > $name = "masak"; $c() > > nom ea25f3: OUTPUT«Use of uninitialized value in string > > contex

Re: [perl #117985] [BUG] :p adverb on hash lookup doesn't weed out a nonexistent hash key if it's the only key in Rakudo

2013-05-13 Thread Patrick R. Michaud
On Mon, May 13, 2013 at 11:54:38AM -0700, Carl Mäsak wrote: > r: my %a= (a => 1, b => 2); say %a:p # shouldn't this be Nil ? > rakudo 2a04f2: OUTPUT«"c" => Any␤» > lizmat: yeah, think so. > * masak submits rakudobug I'm pretty sure rakudo is correct in this case. We know that %a should return

ezmlm warning

2013-05-13 Thread perl6-language-help
Hi! This is the ezmlm program. I'm managing the perl6-langu...@perl.org mailing list. I'm working for my owner, who can be reached at perl6-language-ow...@perl.org. Messages to you from the perl6-language mailing list seem to have been bouncing. I've attached a copy of the first bounce message I

[perl #117985] [BUG] :p adverb on hash lookup doesn't weed out a nonexistent hash key if it's the only key in Rakudo

2013-05-13 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #117985] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=117985 > r: my %a= (a => 1, b => 2); say %a:p # shouldn't this be Nil ? rakudo 2a04f2:

ezmlm warning

2013-05-13 Thread perl6-compiler-help
Hi! This is the ezmlm program. I'm managing the perl6-compi...@perl.org mailing list. I'm working for my owner, who can be reached at perl6-compiler-ow...@perl.org. Messages to you from the perl6-compiler mailing list seem to have been bouncing. I've attached a copy of the first bounce message I

[perl #117935] [BUG] Sending named parameter ;p with value 0 to .postfix:<{ }> should yield the value and not the pair in Rakudo

2013-05-13 Thread Carl Mäsak via RT
actually, the :p(0) also applies to :delete and :exists rn: my %a; %a=1; say %a:delete(0); say %a rakudo 2a04f2: OUTPUT«1␤().hash␤» ..niecza v24-50-gba63d9a: OUTPUT«1␤{}␤» lizmat: Correct. * masak adds that to the ticket