Re: [perl #127959] [BUG] Missing serialize REPR function for REPR SCRef | When using a class using a trait that modify metamodel

2016-04-26 Thread Lloyd Fournier
This is yet another compile time closure serialisation bug. I made a list of all of them I could find: https://rt.perl.org/Public/Bug/Display.html?id=125634 https://rt.perl.org/Public/Bug/Display.html?id=126818 https://rt.perl.org/Public/Bug/

Re: [perl #127980] Smartmatching $item ~~ list does not DWIM (4 ~~ (4,5,6,7))

2016-04-26 Thread Lloyd Fournier
I may not be the typical user but I like 4 ~~ (1,2,3,4) not meaning 4 ~~ any(1,2,3,4). I would only want ~~ List to be True if the LHS is Positional (maybe Iterable) that has the same values in the same order. If 4 ~~ (1,2,3,4) returns true, shoulnd't (1,4) ~~ (1,2,3,4) also be true? I don't think

[perl6/specs] 7bc794: [S07] change .push example (which doesn't follow o...

2016-04-26 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 7bc794550740055287da15c81460c9d8eaabb51a https://github.com/perl6/specs/commit/7bc794550740055287da15c81460c9d8eaabb51a Author: David Warring Date: 2016-04-26 (Tue, 26 Apr 2016) Changed paths: M S07-

[perl #127989] [LTA] IO::Path.new argument error

2016-04-26 Thread via RT
# New Ticket Created by Jake Russo # Please include the string: [perl #127989] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127989 > If you provide more than one argument to IO::Path.new it returns: "Default constructor for

[perl #128000] [NativeCall] Feature Request: Pointer Arithmetic

2016-04-26 Thread via RT
# New Ticket Created by David Warring # Please include the string: [perl #128000] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128000 > Basically, I'd like the following code to work. Currently, you can't do any arithmetic

[perl #123678] [PATCH] Use TAP::Harness for t/harness instead of Test::Harness

2016-04-26 Thread Will Coleda via RT
On Sat Aug 29 12:21:47 2015, coke wrote: > On Mon Jan 26 15:02:24 2015, flusse...@gmail.com wrote: > > Hi, > > > > I saw some LHF in the test harness code and had a go at improving it. > > Doesn't add noticeable spectest speedups, sorry (just prettier code > > :) > > Apologies for the delay in rep

[perl #125615] [LTA] error message when trying to use NYI textual macros

2016-04-26 Thread Will Coleda via RT
On Tue Jul 14 14:33:43 2015, alex.jakime...@gmail.com wrote: > Code: > macro FOO { 'say 1' }; FOO; > > Result: > ===SORRY!=== > Too few positionals passed; expected 3 arguments but got 2 > > > It should say that it is not implemented. Alternatively, you can implement > it... No real change, tho

Re: [perl #127960] GC related crash on repeated sleepsort (using Channel)

2016-04-26 Thread Elizabeth Mattijsen
> On 26 Apr 2016, at 19:24, Jonathan Stowe via RT > wrote: > > Looks like this isn't failing with > > This is Rakudo version 2016.04-36-gce5dc00 built on MoarVM version 2016.04 > > Probably some test to close. No, please keep this open, as this was only fixed by essentially a workaround: Cha

[perl #127051] [LTA] error for 1/1.WHAT

2016-04-26 Thread Will Coleda via RT
On Sun Dec 27 18:27:03 2015, c...@zoffix.com wrote: > here's related one for the numerator: > > m: say Int/Int.WHAT > rakudo-moar a7ea8e: OUTPUT«Parameter 'nu' requires an > instance of type Int, but a type object was passed. Did you forget a > .new?␤ in block at /tmp/LnnSdb0IY8 line 1␤␤» So

[perl #126861] assignment of a Slip to array subscript does not slip

2016-04-26 Thread Will Coleda via RT
On Wed Dec 09 10:44:55 2015, gfldex wrote: > my @a; @a[0] = |(1,2,3); dd @a; > # OUTPUT«Array $var = $[(1, 2, 3),]␤» > > # should be the same as: > my @a = |(1,2,3); dd @a; > # OUTPUT«Array $var = $[1, 2, 3]␤» 16:33 < [Coke]> ^^ should those work out the same? RT #126861 16:38 < jnthn> No 16:39 <

[perl #122340] can't use hindi VOWEL SIGNS in identifiers

2016-04-26 Thread Will Coleda via RT
On Sun Jul 20 09:43:56 2014, coke wrote: > S02-lexical-conventions/unicode.t has two tests that have to be > skipped due to a parse fail: > > lives_ok { my $पहला = 1; }, "hindi declaration"; > is((do { my $दूसरा = 2; sub टोटल ($x) { $x + 2 }; टोटल($दूसरा) }), 4, > "evaluation"); > > When unskippe

[perl #122709] [PERF] await Promise in different thread

2016-04-26 Thread Will Coleda via RT
On Fri Sep 05 14:44:06 2014, elizabeth wrote: > (since leont has been so busy with other stuff, I thought to report > the problem he found) > > 12:11 * leont suspects he's observing Promise.allof spinlocking or > some such. 100% CPU usage, but no input is coming in :-/ > 12:19 lizmat leont: c

[perl #123660] Confusion when using $_ as default

2016-04-26 Thread Will Coleda via RT
On Mon Sep 14 13:04:25 2015, barto...@gmx.de wrote: > $ perl6-m -e 'sub a($a = CALLER::CALLER::<$_>) { say $a }; $_ = "foo"; > a' > foo > > $ perl6-m -e 'sub foo($a = CALLER::CALLER::<$_>) { say $a }; given 42 > { foo(1); foo() }' > 1 > 42 > > The ticket number is mentioned in S06-signature/calle

Re: [perl #127960] GC related crash on repeated sleepsort (using Channel)

2016-04-26 Thread Marcus Ramberg
> On 26 Apr 2016, at 19:24, Jonathan Stowe via RT > wrote: > > Looks like this isn't failing with > > This is Rakudo version 2016.04-36-gce5dc00 built on MoarVM version 2016.04 > > Probably some test to close. yay

[perl #128003] [LTA ERROR] forgetting "token" next to a rule with a dot in it gives confusing error

2016-04-26 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #128003] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128003 > Not sure if there's any way to improve this, but I've spent some time on this error, look

Re: [perl #122709] [PERF] await Promise in different thread

2016-04-26 Thread Lloyd Fournier
Not sure if it's relevant here but last time I checked there is an issues with await and Proc::Async on Mac. RT #125758 for example which looks similar to this. On Wed, 27 Apr 2016 at 7:08 AM, Will Coleda via RT < perl6-bugs-follo...@perl.org> wrote: > On Fri Sep 05 14:44:06 2014, elizabeth wrote

[perl #128005] [BUG] Whatever index is wrong when autovivifying an array

2016-04-26 Thread via RT
# New Ticket Created by # Please include the string: [perl #128005] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128005 > from http://irclog.perlgeek.de/perl6/2016-04-27#i_12398550 06:43 raydiak m: my %foo; %foo[*-0] = 4