[perl #59978] [TODO] Add SVN revision number of reports to Smolder front page

2009-05-05 Thread James Keenan via RT
In r38498, applied patch supplied by Michael Peters. See also: https://trac.parrot.org/parrot/wiki/SmolderTaskList.

r26685 - docs/Perl6/Spec/S32-setting-library

2009-05-05 Thread pugs-commits
Author: lwall Date: 2009-05-06 00:20:38 +0200 (Wed, 06 May 2009) New Revision: 26685 Modified: docs/Perl6/Spec/S32-setting-library/Containers.pod Log: [Containers] some work on various structures related to KeyHash define .pick to work rationally on structures whose values represent weights.

Re: Call for review: traits, lift

2009-05-05 Thread Daniel Ruoso
Em Dom, 2009-05-03 às 21:15 -0700, Larry Wall escreveu: > On Sun, May 03, 2009 at 08:20:17PM +0200, Moritz Lenz wrote: > : If I understood the specs correctly, variables can be lifted, so you can > : write > : > : sub f() {lift $a + $b}; > : { > : my $a is context = 3; > : my $b is context

Re: [perl #65344] Rakudo's &hash is broken

2009-05-05 Thread Moritz Lenz
yary wrote: > On Mon, May 4, 2009 at 1:45 PM, Patrick R. Michaud via RT > wrote: >> rakudo: say (hash(a => '3' )).perl > > should that be "say (hash('a' => '3' )).perl" - is the bareword a intentional? Yes, it's intentional. >> In particular, while we might expect list(1,2,x=>3,4) to give us

Re: [perl #65344] Rakudo's &hash is broken

2009-05-05 Thread yary
On Mon, May 4, 2009 at 1:45 PM, Patrick R. Michaud via RT wrote: > rakudo: say (hash(a => '3' )).perl should that be "say (hash('a' => '3' )).perl" - is the bareword a intentional? > say a => 3 (no output) > say 'a' => 3 a 3 > say (hash('a' => '3' )).perl {"a" => "3"} ... > In particu

Re: Call for review: traits, lift

2009-05-05 Thread Larry Wall
On Sun, May 03, 2009 at 08:20:17PM +0200, Moritz Lenz wrote: : If I understood the specs correctly, variables can be lifted, so you can : write : : sub f() {lift $a + $b}; : { : my $a is context = 3; : my $b is context = 4; : say f(); : } : : Is that correct? I think so. : And if ye

[perl #65388] Rakudo won't push things to global hash variables, silently dropping them instead

2009-05-05 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #65388] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65388 > rakudo: %*h.push: $*IN.slurp.join.comb.map(-> $k {$k=>1}); say %*h.perl rakudo 4d7fe5:

[perl #65390] 'our %*h' blows up in Rakudo

2009-05-05 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #65390] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65390 > rakudo: our %*h; %*h.push: $*IN.slurp.join.comb.map(-> $k {$k=>1}); say %*h.perl rakud

[perl #65376] Null PMC access when assigning to the attribute of a type object in Rakudo

2009-05-05 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #65376] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65376 > rakudo: class A { has $.a is rw }; A.a = 5; say "alive" rakudo 1c0ac1: OUTPUT«Null PMC

Perl Compilation

2009-05-05 Thread christian.aperghis
Working on Darwin. and trying to build 4d3a38f97e57f91ffca7289ace25dbf22513e2b2 Building Perl 6 using Configure.pl --gen-parrot ends on an Abort Trap. /Users/chris/Desktop/rakudo-rakudo-4d3a38f97e57f91ffca7289ace25dbf22513e2b2/parrot/parrot -o perl6_s1.pbc perl6.pir src/string/api.c:767: failed

[perl #65396] GC issue in range/postcircumfix:<[ ]>

2009-05-05 Thread jn...@jnthn.net (via RT)
# New Ticket Created by jn...@jnthn.net # Please include the string: [perl #65396] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65396 > Hi, Just been looking at the slice.t failure and tracked it down a bit to a smaller