[perl #128979] hyper bug

2016-08-17 Thread via RT
# New Ticket Created by 刘刊 # Please include the string: [perl #128979] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128979 > the following code produces () on random occasions. while 1 { my @a = 1, 3, 2, 9, 0, |( 1 .. 100 )

[perl #128978] [LTA] Capture.perl doesn't show arg mutability

2016-08-17 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #128978] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128978 > > my $a = 3; my $c = \($a); $c.perl \(3) The fact that the argument in the Capture is mutable

[perl #128977] [BUG] Capture.WHICH confused by mutable argument

2016-08-17 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #128977] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128977 > > my $a = 3; my $c = \($a); say $c.WHICH; $a = 555; say $c.WHICH Capture|(Int|3) Capture|(Int|5

[perl #128976] [BUG] Capture.perl mishandles Pairs as positional args

2016-08-17 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #128976] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128976 > Using .WHICH as a handy means of introspection: > \(:a).WHICH Capture|a(Bool|1) > \((:a)).WHIC

[perl #118407] Importing sub using require causes Null PMC access

2016-08-17 Thread Will Coleda via RT
On Mon Jun 10 00:32:33 2013, dagurval wrote: > > say slurp("/tmp/a.pm6") > sub abc() is export { say "hello" } > > This works (given that it's NYI) > > require("/tmp/a.pm6") "&abc"; > abc(); > Trying to import symbols &abc from '/tmp/a.pm6', but it does not export > anything > > Without the amper

[perl #127108] [PRECOMP] Inexplicable failure of grammar post-CURI branch

2016-08-17 Thread Will Coleda via RT
On Tue Jan 19 11:20:59 2016, coke wrote: > On Tue Jan 19 10:12:08 2016, coke wrote: > > On Mon Jan 04 11:53:44 2016, coke wrote: > > > On Thu Dec 31 05:04:23 2015, lue wrote: > > > > There's unfortunately no real diagnostic I can provide for the > > > > error > > > > specifically, since the result

[perl #128809] [CONC] async related data issue

2016-08-17 Thread jn...@jnthn.net via RT
On Mon Aug 01 20:51:12 2016, jdv79 wrote: > [jdv@wieldy ~]$ cat test_n_threads.p6 > use v6; > > await map { start { > my $foo = "barbaz"; > $foo ~~ s/.+/{ .roll($/.chars).join }/; > } }, ^100; > [jdv@wieldy ~]$ perl6 test_n_threads.p6 > Use of Nil in string context in block at test_n_t

[perl #128973] Bug in REPL int, int8, int16

2016-08-17 Thread via RT
# New Ticket Created by mt1957 # Please include the string: [perl #128973] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128973 > Hi, Found a bug in newest rakudo version 2016.07.1-217-gd6abf8b built on MoarVM version 2016.

Re: [perl #128931] [BUG] .WHICH doesn't distinguish identically-named classes

2016-08-17 Thread Zefram
There was an attempt to fix this in 4d85cde9, and it does avoid clashes between class objects, but it's introduced a new kind of .WHICH clash: > Int.WHICH Int|29060856 > for Int, 29060856 { say (.WHICH, .DEFINITE) } (Int|29060856 False) (Int|29060856 True) > Int === 29060856 True -zefram

Re: Gimp & Perl6

2016-08-17 Thread Will Coleda
http://modules.perl6.org/#q=gimp No one has gotten as far as releasing a module yet, anyway. On Wed, Aug 17, 2016 at 1:25 AM, Richard Hainsworth wrote: > Has anyone looked at a Perl6 module for GIMP? > > GIMP natively uses a Scheme-like interface, but there are Perl and Python > modules. > >

Re: [perl #127019] [LTA] inconsistent coercions for Bool

2016-08-17 Thread Elizabeth Mattijsen
Fixed with a4140a3 , tests needed > On 24 Dec 2015, at 09:28, Zefram (via RT) > wrote: > > # New Ticket Created by Zefram > # Please include the string: [perl #127019] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=12701