[perl #128203] S06-advanced/wrap.t in 6.c-errata roast branch fails a test

2016-05-20 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #128203] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128203 > Here's what the failure looks like: > # Failed test 'right exception type

Re: [perl #126163] [LTA] silence of IterationEnd failures

2016-05-20 Thread Zefram
Sam S. via RT wrote: >Storing IterationEnd in an array or passing it to a , would certainly >qualify as "doing something other than the intended =:= check" to it, >so... just don't do those things. Don't introspect? Don't metaprogram? >How do you intend for and to do a preliminary check to

[perl #128201] [BUG] [WEIRD] `.gist` hangs indefinitely on a lazy array passed to a slurpy paramater

2016-05-20 Thread via RT
# New Ticket Created by Sam S. # Please include the string: [perl #128201] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128201 > The .gist call in the following code hangs indefinitely: my @a = 1..Inf; foo @a; sub

[perl #128174] Documentation for Buf is missing items

2016-05-20 Thread Will Coleda via RT
On Wed May 18 06:56:46 2016, clifton.w...@gmail.com wrote: > The "Role Buf" page at https://docs.perl6.org/type/Buf is missing > descriptions for the following multi methods: push, pop, append, > prepend, shift and unshift, splice You had originally opened this as a perl 5 bug - it was moved to

Re: [perl #128156] dependency errors

2016-05-20 Thread Lloyd Fournier
It seems to have been introduced by one of nine's commits on the 13th. This or one of the commits just before it I think: https://github.com/rakudo/rakudo/commit/4fb3f94fcd39699f69e9d175315f9f1357e8faf3 On Fri, May 20, 2016 at 11:26 PM Lloyd Fournier wrote: > err leme

Re: [perl #128156] dependency errors

2016-05-20 Thread Lloyd Fournier
err leme try that again Precomp is broken for dependency chains 3 or longer when one of the dependencies down the chain is *changed*. To expand: Sometimes it gives you a problem where you get "Missing or wrong version of dependency" and sometimes symbols that should have been merged from

Re: [perl #128156] dependency errors

2016-05-20 Thread Lloyd Fournier
I've been getting something similar and I've managed to golf it. mkdir lib; echo 'class One { }; need Two;' > lib/One.pm6 echo 'class Two { }; need Three;' > lib/Two.pm6 echo '' > lib/Three.pm6 perl6 -Ilib -e 'need One; say (GLOBAL:::exists ?? "OK" !! "NOT OK")' echo "changing file" && touch