Re: [perl #125344] Int..Whatever ranges are slow (~20 times slower than Int..Int)

2015-06-06 Thread Elizabeth Mattijsen
> On 06 Jun 2015, at 21:24, Rob Hoelz (via RT) > wrote: > > # New Ticket Created by Rob Hoelz > # Please include the string: [perl #125344] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=125344 > > > > Let's say I have

[perl #125346] Type signature failures non-deterministically reported in start { ... } blocks

2015-06-06 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #125346] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125346 > See the attached script. The worker(Any, Int) sub is called from within a start block with

[perl #125345] Certain noncapturing subrules fail to advance Cursor pos

2015-06-06 Thread Brian S. Julin
# New Ticket Created by "Brian S. Julin" # Please include the string: [perl #125345] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125345 > This is a relatively recent regression probably sometime in May 2015: 20:44 skids

[perl #125344] Int..Whatever ranges are slow (~20 times slower than Int..Int)

2015-06-06 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #125344] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125344 > Let's say I have an array where @array.end == $end. Using @array[0..$end] is about 20 time

[perl6/specs] 6e1c9d: Update design docs for how Str/NFG has worked out.

2015-06-06 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 6e1c9d45c225eb61ae1e6da6048689aeab291d55 https://github.com/perl6/specs/commit/6e1c9d45c225eb61ae1e6da6048689aeab291d55 Author: Jonathan Worthington Date: 2015-06-06 (Sat, 06 Jun 2015) Changed paths:

[perl #125343] Using an earliest { ... wait 0 { ... } } causes

2015-06-06 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #125343] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125343 > The attached script reproduces the issue. When I use earliest with a wait 0 block, I get th

[perl #125342] New segfault over last week. Reported in Panda - https://github.com/tadzik/panda/issues/165

2015-06-06 Thread via RT
# New Ticket Created by David Warring # Please include the string: [perl #125342] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125342 > The following has started segfaulting for me on rakudo Moar over about the last week. B

Re: [perl #125285] AutoReply: Capturing separator (like /something % (.+?)/ ) spews out backtracking

2015-06-06 Thread Alex Jakimenko
I works this way though: perl6 -e "say 'rule1 foo rule2 bar' ~~ /^ ( 'rule1' || 'rule2' )* %% $=[.+?] $/" 「rule1 foo rule2 bar」 0 => 「rule1」 baz => 「 foo 」 0 => 「rule2」 baz => 「 bar」 Change [] to () and it will break the same way. On Sat, May 30, 2015 at 3:05 AM, perl6 via RT wrote: > Gree

[perl #125293] Match objects don't roundtrip through .perl

2015-06-06 Thread Christian Bartolomaeus via RT
As far as I understand it, the problem can be golfed to the following: $ perl6 -e 'say EnumMap.new("a", 42).perl' EnumMap.new(:a(42)) $ perl6 -e 'say EnumMap.new("a", 42).perl.perl' "EnumMap.new(:a(42))" $ perl6 -e 'say EnumMap.new("a", 42).perl.EVAL' EnumMap.new()

[perl #125302] [BUG] Segfault in Regex construction

2015-06-06 Thread Christian Bartolomaeus via RT
This was fixed with commits c79bcc5698 and 2cc3afe985. I added a test to S05-metasyntax/regex.t with commit https://github.com/perl6/roast/commit/e2259973be I'm closing this ticket as 'resolved'.

[perl #125317] [BUG] sign(NaN) is 1, not NaN, in Rakudo

2015-06-06 Thread Christian Bartolomaeus via RT
There is a passing test in S32-num/sign.t. I'm closing this ticket as 'resolved'.