[perl #130540] [BUG] || && and or cannot be "overloaded"

2017-01-10 Thread Zoffix Znet via RT
On Tue, 10 Jan 2017 16:23:18 -0800, fernandocor...@gmail.com wrote: > If I write another || operator it will continue to use the original > version. > > https://irclog.perlgeek.de/perl6/2017-01-10#i_13895823 > To save other readers sifting

[perl #130494] [CONC] [PERF] Using Proc::Async with tap leads to memory leak

2017-01-10 Thread jn...@jnthn.net via RT
On Tue, 03 Jan 2017 12:36:10 -0800, c...@zoffix.com wrote: > On Tue, 03 Jan 2017 10:33:31 -0800, ronaldxs wrote: > > Links: > > -- > > [1] https://github.com/perl6/doc/issues/1104 > > [2] > > https://github.com/perl6/Pod-To- > > HTML/blob/master/lib/Pod/To/HTML.pm#L300 > > > Confirmed on

[perl #130532] [JVM] Failing tests for itemization of arguments with infix: after introduction of Rakudo::Internals.OneValueIterator

2017-01-10 Thread Christian Bartolomaeus via RT
On Sun, 08 Jan 2017 23:31:11 -0800, barto...@gmx.de wrote: > Since the new Rakudo::Internals.OneValueIterator is used in infix: > (Rakudo commit c405f06724) there are four failing tests in > S03-metaops/zip.t on rakudo-j. > > One example of failing code: > > $ ./perl6-j -e 'say $(1, 2) Z ' >

Re: [perl #130533] how to export alias to module function?

2017-01-10 Thread Alexey Melezhik
Hi Lloyd! > Seems to be it bugs out if you put "is export" on a constant decl where the RHS is a Exactly. Meanwhile I just do something like this: sub foo-alias is export { foo } This works for me two. I will be waiting till bug is fixed so to rely on better Perl6 syntax. SO, no hurry.

Re: Re-export symbols

2017-01-10 Thread Lloyd Fournier
Hey Fernando, This is not yet implemented in rakudo. I included a way of doing this in CompUnit::Util . I'm not sure when/if :EXPORT will be implemented (I actually don't think it's a good idea). I've just realised that there is another

[perl #130535] Dynamic module loading by require in another modules has broken recently?

2017-01-10 Thread via RT
# New Ticket Created by Asato Wakisaka # Please include the string: [perl #130535] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130535 > With recent moarvm, loading modules dynamically by require ::("Some::Module") in

[perl #130518] [TAP6] Harness fails with description for whole-file skippage

2017-01-10 Thread Zoffix Znet via RT
On Thu, 05 Jan 2017 14:33:21 -0800, c...@zoffix.com wrote: > TAP v12 spec[^1] shows the following as an example as TAP output that > can be used to skip all tests with description: > > 1..0 # Skipped: WWW::Mechanize not installed > > However, trying to run TAP::Harness with such output crashes

Re: Hi perl6 users

2017-01-10 Thread faraco3
Web and CLI oriented? Maybe GUI? If I understand you question. On Ahad 08 Jan 2017 03:21 , Parrot Raiser wrote: Welcome. What are your principal applications for P6 likely to be? On 1/7/17, faraco wrote: Hello, I'm new here. Firstly, I like Perl 6. It has some nice

Re: [perl #130520] [RFC] Deprecate `flatmap`

2017-01-10 Thread Lloyd Fournier
I took a look through my codebase to see where I have used flatmap. Every place I think I would prefer map({ }).flat on second look. so +1 LL On Fri, Jan 6, 2017 at 4:47 PM Sam S. wrote: > # New Ticket Created by Sam S. > # Please include the string: [perl

Re: [perl #130533] how to export alias to module function?

2017-01-10 Thread Lloyd Fournier
Looks like a bug to me. Seems to be it bugs out if you put "is export" on a constant decl where the RHS is a You could do this until it's fixed: sub foo is export { } BEGIN EXPORT::DEFAULT::{''} = On Tue, Jan 10, 2017 at 1:21 AM Alexey Melezhik < perl6-bugs-follo...@perl.org> wrote: # New

Re: Re-export symbols

2017-01-10 Thread Fernando Santagata
Thank you that's very interesting. I solved the problem I had, refactoring the modules I was working on: after all I didn't have to ask anyone. Still the problem would bug me. Thanks again! On Tue, Jan 10, 2017 at 12:25 PM, Lloyd Fournier wrote: > Hey Fernando, > > This