Fedora's plans for 2017.07

2017-08-05 Thread ToddAndMargo
Hi All, Just a heads up. I asked Fedora for 2017.07 and this was their response: -T https://bugzilla.redhat.com/show_bug.cgi?id=1478608 Gerd Pokorra changed: What|Removed |Added

[perl #131831] Possible precomp issue: crash with `is a directory, cannot do '.open' on a directory` pointing to a sha1 hash of a dir

2017-08-05 Thread Stefan Seifert via RT
The .e there is absolutely correct as depending on the repository format version $lookup may be a file or directory. We switched to a directory with version 1. So the .f will fail on a current repo version which explains the failure in install-core-dist.pl The real question is not why $lookup e

[perl #131829] Weird memory leakage of sequences and other things ( (1…∞).grep(* < 0)[^10] )

2017-08-05 Thread Zoffix Znet via RT
On Wed, 02 Aug 2017 03:59:53 -0700, alex.jakime...@gmail.com wrote: > Code: > say (1…∞).grep(* < 0)[^10] > > > Given that all of the values are thrown away by grep, I expect the > memory usage to be constant (even though the code will never finish). > However, it seems that there's a leak somewhe

[perl #131829] Weird memory leakage of sequences and other things ( (1…∞).grep(* < 0)[^10] )

2017-08-05 Thread Zoffix Znet via RT
On Wed, 02 Aug 2017 03:59:53 -0700, alex.jakime...@gmail.com wrote: > Code: > say (1…∞).grep(* < 0)[^10] > > > Given that all of the values are thrown away by grep, I expect the > memory usage to be constant (even though the code will never finish). > However, it seems that there's a leak somewhe

[perl #131845] Binding a Seq to a `@` variable tries to consume it first

2017-08-05 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #131845] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131845 > Since Seq is not a Positional type, *binding* it to a `@` variable is typecheck error: 1

[perl #129812] [OPTIMIZER] `is rw` candidates get called even if a non-rw argument is passed

2017-08-05 Thread Jan-Olof Hendig via RT
On Wed, 05 Oct 2016 14:23:57 -0700, c...@zoffix.com wrote: > > This code shows the bug: > > zoffix@leliana:~$ perl6 -e 'm: multi foo ($) {"right" }; multi > foo ($ is rw) {"wrong"}; say foo "42"' > wrong > > And if we turn off the optimizer, we get the right candidate called > (sam

Re: another one liner

2017-08-05 Thread ToddAndMargo
On 08/05/2017 12:34 AM, Elizabeth Mattijsen wrote: On 5 Aug 2017, at 09:21, ToddAndMargo wrote: On 08/04/2017 08:43 PM, Bruce Gray wrote: P6-ish version: ifconfig | perl6 -e 'say lines.map({ ~$0 if /^(\S+) ": flags="/ }).sort[1]' Would some kind person please tell me what is going on here?

Re: another one liner

2017-08-05 Thread Elizabeth Mattijsen
> On 5 Aug 2017, at 09:21, ToddAndMargo wrote: > > On 08/04/2017 08:43 PM, Bruce Gray wrote: >> P6-ish version: >> ifconfig | perl6 -e 'say lines.map({ ~$0 if /^(\S+) ": flags="/ }).sort[1]' > > Would some kind person please tell me what is going on here? say the result of reading all lines

Re: another one liner

2017-08-05 Thread ToddAndMargo
On 08/04/2017 08:43 PM, Bruce Gray wrote: P6-ish version: ifconfig | perl6 -e 'say lines.map({ ~$0 if /^(\S+) ": flags="/ }).sort[1]' Would some kind person please tell me what is going on here?

Re: another one liner

2017-08-05 Thread Elizabeth Mattijsen
> On 5 Aug 2017, at 08:50, Sean McAfee wrote: > > On Fri, Aug 4, 2017 at 10:18 PM, ToddAndMargo wrote: > On 08/04/2017 08:43 PM, Bruce Gray wrote: > > P6-ish version: > ifconfig | perl6 -e 'say lines.map({ ~$0 if /^(\S+) ": flags="/ }).sort[1]' > > > Wait a second. How does map skip input el