[perl #116933] Glibc: double free or memory corruption crash running t/spec/S02-types/bool.t in Rakudo 2013.02.1-7-gb205e66

2013-02-25 Thread via RT
# New Ticket Created by Ira Byerly # Please include the string: [perl #116933] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=116933 > Script started on Mon 25 Feb 2013 08:40:18 PM HST $ $ $ $ perl6 -v This is perl6

[perl6/specs] d6eae2: Get rid of the roundcents example, which no longer...

2013-02-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: d6eae27a80228129f060ab33ba515448063b4d1c https://github.com/perl6/specs/commit/d6eae27a80228129f060ab33ba515448063b4d1c Author: Solomon Foster Date: 2013-02-25 (Mon, 25 Feb 2013) Changed paths: M S32

Re: Per-Object Roles..

2013-02-25 Thread Frank White
OK Moritz... Thanks for the feedback. On Sun, Feb 24, 2013 at 2:24 AM, Moritz Lenz wrote: > Hi Frank, > > On 02/24/2013 07:27 AM, Frank White wrote: > > Hi, I am new to Perl6 and I'm interested in the feature that allows you > to > > add roles to classes. From what I understand you can add a

Re: [perl #116897] while (...splice...) runs forever

2013-02-25 Thread Patrick R. Michaud via RT
On Thu, Feb 21, 2013 at 09:07:44AM -0800, Ricardo SIGNES wrote: > This program never terminates: > > use v6; > > my @a = << >>; > while (my @c = splice @a, 0, 3) { > say "one more"; > } After each splice, @c ends up being @(Any, Any, Any). I'm not sure if this is correct; I can see

Re: [perl #116897] while (...splice...) runs forever

2013-02-25 Thread Patrick R. Michaud
On Thu, Feb 21, 2013 at 09:07:44AM -0800, Ricardo SIGNES wrote: > This program never terminates: > > use v6; > > my @a = << >>; > while (my @c = splice @a, 0, 3) { > say "one more"; > } After each splice, @c ends up being @(Any, Any, Any). I'm not sure if this is correct; I can see