[perl6/specs] 73c60f: remove accidental duplication

2014-02-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 73c60fc5fe4c69ca56e1b688a9cc6b339e5e132e https://github.com/perl6/specs/commit/73c60fc5fe4c69ca56e1b688a9cc6b339e5e132e Author: Larry Wall Date: 2014-02-24 (Mon, 24 Feb 2014) Changed paths: M S32-set

[perl6/specs] 5ef5f5: Add Range.sample for TheDamian++

2014-02-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 5ef5f5ca42804c868ff42c7913cde19a554b1e8e https://github.com/perl6/specs/commit/5ef5f5ca42804c868ff42c7913cde19a554b1e8e Author: Larry Wall Date: 2014-02-24 (Mon, 24 Feb 2014) Changed paths: M S32-set

[perl #117147] doesnt compile under mac 10.8.3

2014-02-24 Thread Will Coleda via RT
On Thu Mar 14 01:20:35 2013, moritz wrote: > On 03/13/2013 03:07 PM, herbert breunung (via RT) wrote: > > # New Ticket Created by "herbert breunung" > > # Please include the string: [perl #117147] > > # in the subject line of all future correspondence about this issue. > > # https://rt.perl.org:4

[perl #119293] Rakudo doesn't warn about Perl 5 $]

2014-02-24 Thread Will Coleda via RT
On Wed Aug 14 14:39:07 2013, lue wrote: > r: say $] > rakudo c0814a: OUTPUT«===SORRY!=== Error while compiling > /tmp/bQ267__iqC␤Non-declarative sigil is missing its name␤at > /tmp/bQ267__iqC:1␤--> say ⏏$]␤ expecting any of:␤ argument list␤ > prefix or term␤ prefix or meta-prefix␤»… > > T

Re: [perl #78454] [BUG] Filehandle not flushed at program exit

2014-02-24 Thread Dagur Valberg Johannsson
There is a related test in roast/ S32-io/io-handle.t that tests that IO flushes when it goes out of scope. rakudo-parrot still doesn't do that: 10:57 r: "asdf".IO.open(:w).print("24"); say slurp "asdf"; 10:57 rakudo-jvm 299d70, rakudo-moar 299d70: OUTPUT«24␤» 10:57 ..rakudo-parrot 299d70: OUTP

Re: [perl #79294] [BUG] $*PERL should be version of Perl, not version of Rakudo in Rakudo

2014-02-24 Thread Moritz Lenz
On 02/24/2014 09:04 AM, Will Coleda via RT wrote: On Tue Nov 16 16:15:29 2010, masak wrote: rakudo: say $*PERL rakudo 015d77: OUTPUT«name rakudo␤version 2010.10-22- g015d77b␤␤» $*PERL should be the Perl version, not the rakudo version the rakudo version should be in VM * masak submits r

[perl #102478] [BUG] Attributes can't be declared inside of a BEGIN eval in Rakudo

2014-02-24 Thread Will Coleda via RT
On Sat Oct 29 13:09:29 2011, masak wrote: > nom: class A { eval 'has $.x' }; say A.new(x => 3).x > nom 9c6aed: OUTPUT«===SORRY!===␤A cannot have attributes at > line 1, near ""␤» > nom: class A { BEGIN eval 'has $.x' }; say A.new(x => 3).x > nom 9c6aed: OUTPUT«===SORRY!===␤A cannot have attri

[perl #79294] [BUG] $*PERL should be version of Perl, not version of Rakudo in Rakudo

2014-02-24 Thread Will Coleda via RT
On Tue Nov 16 16:15:29 2010, masak wrote: > rakudo: say $*PERL > rakudo 015d77: OUTPUT«name rakudo␤version 2010.10-22- > g015d77b␤␤» > $*PERL should be the Perl version, not the rakudo version > the rakudo version should be in VM > * masak submits rakudobug Since this was opened, what was

[perl #77340] [BUG] Arrays should flatten in for loop expressions in the absence of explicit don't-flatten clues, but they don't in Rakudo

2014-02-24 Thread Will Coleda via RT
On Fri Aug 20 17:53:36 2010, pmichaud wrote: > On Fri, Aug 20, 2010 at 03:42:57PM -0700, Carl Mäsak wrote: > > rakudo: my %h = foo => []; for %h -> $a { say $a.perl } > > rakudo 7b0031: OUTPUT«[]␤» > > I find I do such hash accesses when iterating on quantified > > Match objects. I'd like to kno

[perl #106932] Junctions in subsignatures can cause infinite recursion

2014-02-24 Thread Will Coleda via RT
Verified behavior, unchanged in e8cea1. -- Will "Coke" Coleda