Re: [perl #127847] [PATCH] Bug #126800

2016-04-08 Thread Elizabeth Mattijsen
> On 06 Apr 2016, at 22:47, Bernhard Specht (via RT) > wrote: > > # New Ticket Created by Bernhard Specht > # Please include the string: [perl #127847] > # in the subject line of all future correspondence about this issue. > #

[perl #127863] [BUG] MixHash not cloning properly

2016-04-08 Thread via RT
# New Ticket Created by grond...@yahoo.fr # Please include the string: [perl #127863] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127863 > IRC extract from today: 23:35 < grondilu> m: my MixHash $a .= new; my MixHash $b =

[perl #127860] [BUG][PRECOMP] Wrapped method fails when precompiled

2016-04-08 Thread via RT
# New Ticket Created by Jonathan Stowe # Please include the string: [perl #127860] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127860 > It appears that the Metamodel::WrapDispatcher can't find the candidate to execute

[perl #127854] [BUG] IO::Handle.read() won't return buffer sizes >= 100_000_000

2016-04-08 Thread via RT
# New Ticket Created by James Clark # Please include the string: [perl #127854] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127854 > $ perl6 --version This is Rakudo version 2016.03-98-g61d231c built on MoarVM version

[perl #127847] [PATCH] Bug #126800

2016-04-08 Thread via RT
# New Ticket Created by Bernhard Specht # Please include the string: [perl #127847] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127847 > disallow dimensions smaller or equal 0 in shapes From

[perl #127227] [PERF] `<{...}>` in regex leaks memory

2016-04-08 Thread jn...@jnthn.net via RT
On Sat Jan 09 12:20:11 2016, siavash.askari.n...@gmail.com wrote: > > I experienced this problem in this code: > $_ = "abcdefgh"; say ++$_ until > /(\w)<{$0.Str.succ}><{$0.Str.succ.succ}>/ and !/i|o|l/ and > /(\w)$0.*(\w)$1/; > > And `/(\w)<{$0.Str.succ}><{$0.Str.succ.succ}>/` regex is causing

[perl #127858] [BUG] "Cannot invoke this object" error while importing an array constant

2016-04-08 Thread via RT
# New Ticket Created by grond...@yahoo.fr # Please include the string: [perl #127858] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127858 > $ cat > A.pm6 unit module A; constant @a is export = map { (1 +< $_) => 1 }, ^3;

Re: [perl #127856] LTA error message when declaring variables without a space between “my” and parens (my($test);)

2016-04-08 Thread JuhiMarcel LangbroekTimmerman
Hi, Perhaps the error is caused by the assignment wanting to store 42 at the address of $test, which is not there yet. See also doc about 'sub () is rw { ••• }'. Look for rw traits! Furthermore, to declare and assign more variables use (my $a, my $b) = ( 42, 43); Greetings Marcel On

Re: [perl #109586] .pick on a large range needs more entropy

2016-04-08 Thread JuhiMarcel LangbroekTimmerman
Hi, For the dropped leading zeros try .fmt('%064b') Greetings Marcel On April 7, 2016 6:53:44 PM "Matthew Wilson via RT" wrote: 12:52 < diakopter> m: say (^2**64).pick.fmt('%64b') 12:52 <+camelia> rakudo-moar 61d231: OUTPUT«