Re: r29113 - docs/Perl6/Spec

2009-11-17 Thread Martin D Kealey
On Tue, 17 Nov 2009, pugs-comm...@feather.perl6.nl wrote: > +++ docs/Perl6/Spec/S02-bits.pod 2009-11-17 18:37:41 UTC (rev 29113) > @@ -2735,10 +2735,11 @@ > > =item * > > -Complex literals are similarly indicated by writing an addition of > +Complex literals are similarly indicated by writi

r29121 - docs/Perl6/Spec

2009-11-17 Thread pugs-commits
Author: lwall Date: 2009-11-18 01:53:40 +0100 (Wed, 18 Nov 2009) New Revision: 29121 Modified: docs/Perl6/Spec/S02-bits.pod docs/Perl6/Spec/S09-data.pod Log: [S02,S09] more tweakage of rat semantics Rat types are instantiations of a Rational role as suggested by moritz_++ Modified: docs/Pe

r29113 - docs/Perl6/Spec

2009-11-17 Thread pugs-commits
Author: lwall Date: 2009-11-17 19:37:41 +0100 (Tue, 17 Nov 2009) New Revision: 29113 Modified: docs/Perl6/Spec/S02-bits.pod Log: [S02] more clarifications from TheDamian++ Modified: docs/Perl6/Spec/S02-bits.pod === --- docs/Perl6

Parrot 1.8.0 "Zygodactyly" Released!

2009-11-17 Thread Bernhard Schmalhofer
On behalf of the Parrot team, I'm proud to announce Parrot 1.8.0 "Zygodactyly". Parrot, http://parrot.org/, is a virtual machine aimed at running all dynamic languages. Parrot 1.8.0 is available on Parrot's FTP site ftp://ftp.parrot.org/pub/parrot/releases/devel/1.8.0/, or follow the download in

r29112 - docs/Perl6/Spec

2009-11-17 Thread pugs-commits
Author: lwall Date: 2009-11-17 19:22:58 +0100 (Tue, 17 Nov 2009) New Revision: 29112 Modified: docs/Perl6/Spec/S02-bits.pod docs/Perl6/Spec/S04-control.pod docs/Perl6/Spec/S06-routines.pod docs/Perl6/Spec/S11-modules.pod Log: [specs] s/CONTEXT/DYNAMIC/ to avoid confusion of concepts

r29111 - docs/Perl6/Spec

2009-11-17 Thread pugs-commits
Author: lwall Date: 2009-11-17 18:43:12 +0100 (Tue, 17 Nov 2009) New Revision: 29111 Modified: docs/Perl6/Spec/S02-bits.pod Log: [S02] more Rat and Ratio clarification Modified: docs/Perl6/Spec/S02-bits.pod === --- docs/Perl6/Spe

r29110 - docs/Perl6/Spec

2009-11-17 Thread pugs-commits
Author: lwall Date: 2009-11-17 18:28:47 +0100 (Tue, 17 Nov 2009) New Revision: 29110 Modified: docs/Perl6/Spec/S02-bits.pod docs/Perl6/Spec/S09-data.pod Log: [S02,S09] break the assumption that Rats should be symmetrical Add Ratio for performance-destroying but truly arbitrary-precision rati

[perl #66658] tests available

2009-11-17 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S06-advanced_subroutine_features/wrap.t commit 6e6fb2879cc18f9ecd5afda7b8ee4dd0bb016937 Author: kyle Date: Tue Nov 17 16:09:39 2009 + [t/spec] Test for RT 66658: .wrap gets lexicals confused

Re: Another build system for Rakudo

2009-11-17 Thread Timothy S. Nelson
On Sat, 14 Nov 2009, François Perrad wrote: I write another build system for Rakudo (master branch). Does it work with RPM specfiles? It took us a while to beat the current one into submission for that. :) - | N

[perl #70469] [BUG] Either binding or lexicals are broken in Rakudo when recursing in methods

2009-11-17 Thread Carl Mäsak via RT
masak (>): > $ cat /tmp/test > class M { > has M @.ms is rw; > method s($i=0) { > $i ~ "[{ map { "{$_.s($i + 1)}" }, self.ms }]" > } > } > > my $m = M.new; > my $m2 = M.new; > $m2.ms = M.new; > $m.ms = M.new, $m2, M.new; > say $m.s; > > $ perl6 /tmp/test > 0[1[] 2[3[]] 4[]] >

[perl #70530] Calling multimethod causes segfault

2009-11-17 Thread via RT
# New Ticket Created by Arne Skjærholt # Please include the string: [perl #70530] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=70530 > This code snippet: class T does Associative { multi method postcircumfix:<{ }> { }; };

[perl #70534] [TODO] In regexes should preserve the capture, does not

2009-11-17 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #70534] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=70534 > See $subject; new spec as per r29067. Some basic tests for that are in t/spec/S05-metasyn

[perl #70526] [BUG] Cannot declare contextual &-sigilled variables in Rakudo

2009-11-17 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #70526] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=70526 > rakudo: my &*x rakudo 7347ec: Method 'scope' not found for invocant of class 'PAST;Op'