Re: [perl #131805] [REGRESSION] [PERF] .grep-ing with a code block is now almost twice slower ( .grep({/foo/}) )

2017-07-26 Thread Elizabeth Mattijsen
Looking at the profile of (^1).grep({!/1/}).elems.say the first 5 entries (responsible for 70% of CPU in that example) have nothing to do with matching, but everything with trying to find the right dispatchee. And it looks like this is basically caused by: $_ = 1; /1/ Because $_

Re: [perl #131805] [REGRESSION] [PERF] .grep-ing with a code block is now almost twice slower ( .grep({/foo/}) )

2017-07-26 Thread Elizabeth Mattijsen via RT
Looking at the profile of (^1).grep({!/1/}).elems.say the first 5 entries (responsible for 70% of CPU in that example) have nothing to do with matching, but everything with trying to find the right dispatchee. And it looks like this is basically caused by: $_ = 1; /1/ Because $_

Re: [perl #131778] AutoReply: BUG: IO::Socket::INET

2017-07-26 Thread Michael Lowe via RT
Some additional testing. If I disable IPv6 on my ethernet adapter, everything works. If I re-enable IPv6, it no longer works. Possibly something on my end? but all other software and dev environments work normally without disabling IPv6. Mike Lowe (513) 417-0570 mlowe31...@gmail.com On Sat, Jul 2

[perl #131805] [REGRESSION] [PERF] .grep-ing with a code block is now almost twice slower ( .grep({/foo/}) )

2017-07-26 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #131805] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131805 > See this benchable6 output: https://gist.github.com/Whateverable/600

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

2017-07-26 Thread Lloyd Fournier
Fix reverted: https://github.com/rakudo/rakudo/commit/50d38a1f368f0addb601e857232642f3a8de3aa2 should be re-opened :) On Tue, Jul 25, 2017 at 11:45 PM Lloyd Fournier via RT < perl6-bugs-follo...@perl.org> wrote: > merged patch: https://github.com/rakudo/rakudo/pull/ > tests: https://github.c

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

2017-07-26 Thread Lloyd Fournier via RT
Fix reverted: https://github.com/rakudo/rakudo/commit/50d38a1f368f0addb601e857232642f3a8de3aa2 should be re-opened :) On Tue, Jul 25, 2017 at 11:45 PM Lloyd Fournier via RT < perl6-bugs-follo...@perl.org> wrote: > merged patch: https://github.com/rakudo/rakudo/pull/ > tests: https://github.c

Re: [perl #131705] constant Regex: getlex: outer index out of range

2017-07-26 Thread Lloyd Fournier via RT
Fix reverted: https://github.com/rakudo/rakudo/commit/50d38a1f368f0addb601e857232642f3a8de3aa2 should be re-opened :) On Tue, Jul 25, 2017 at 11:42 PM Lloyd Fournier via RT < perl6-bugs-follo...@perl.org> wrote: > merged patch: https://github.com/rakudo/rakudo/pull/ > tests: https://github.c

Re: [perl #131705] constant Regex: getlex: outer index out of range

2017-07-26 Thread Lloyd Fournier
Fix reverted: https://github.com/rakudo/rakudo/commit/50d38a1f368f0addb601e857232642f3a8de3aa2 should be re-opened :) On Tue, Jul 25, 2017 at 11:42 PM Lloyd Fournier via RT < perl6-bugs-follo...@perl.org> wrote: > merged patch: https://github.com/rakudo/rakudo/pull/ > tests: https://github.c

Re: [perl #131801] Stranded strings with combiners or ZWJ on borders break my NFG expectations ( (“\x[0305]a” x 2).chars.say )

2017-07-26 Thread Joachim Durchholz
The examples do not show forward-looking combiners. Not sure what's happening with the ZWJ - I dimly recall that Unicode says it is a misnomer and explicitly does not join arbitrary graphemes into characters, but I don't have the reference handy. Aleks-Daniel is showing that x 2 does not detec

Re: [perl #131801] Stranded strings with combiners or ZWJ on borders break my NFG expectations ( (“\x[0305]a” x 2).chars.say )

2017-07-26 Thread Brandon Allbery
Combining chars look forward now? This breaks *my* expectations. On Wed, Jul 26, 2017 at 6:36 AM, Aleks-Daniel Jakimenko-Aleksejev < perl6-bugs-follo...@perl.org> wrote: > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #131801] > # in the subject l

[perl #131801] Stranded strings with combiners or ZWJ on borders break my NFG expectations ( (“\x[0305]a” x 2).chars.say )

2017-07-26 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #131801] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131801 > Code: say (“\c[COMBINING OVERLINE]a” x 2).chars Result: 4 Code: sa