[perl #130205] [BUG] Weird parsing of q:w with matching delimiters when same delimiters appear inside

2017-10-08 Thread Brian S. Julin via RT
On Sun, 08 Oct 2017 17:35:21 -0700, samant...@posteo.net wrote: > This is happening because it appears to split it up at the matching > delimiter and then concat it back together again, concatting it back > together after the word split. Might be the same bug as RT#119401

[perl #132251] Curly quotes not supported in postfix call syntax ( Foo.new.“bar”() )

2017-10-08 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #132251] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132251 > This works: Code: class Foo { method bar() { say 42 } }; Foo.new."ba

[perl #132250] [LTA] require ‘’ suggests ‘.’ but that makes no sense (require ‘’)

2017-10-08 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #132250] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132250 > Code: require ‘’ Result: Must specify something as a path: did you m

[perl #132249] [LTA] use lib ‘’ spills guts (use lib ‘’)

2017-10-08 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #132249] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132249 > Code: use lib ‘’ Result: ===SORRY!=== Too few positionals passed to

[perl #127973] [BUG] native strings not allowed to be as big as regular strings

2017-10-08 Thread Jan-Olof Hendig via RT
On my 32 bit Linux VM: dogbert@dogbert-VirtualBox ~ $ perl6 -v This is Rakudo version 2017.09-348-g830084430 built on MoarVM version 2017.09.1-575-gd4e230a69 implementing Perl 6.c. dogbert@dogbert-VirtualBox ~ $ time perl6 -e 'my str $a = "a" x 2**30; say $a.chars' 1073741824 real0m0.173s u

[perl #127145] [BUG] explicitly-manage is doing something un thread-safe apparently

2017-10-08 Thread Jan-Olof Hendig via RT
This seems to have been fixed as far as I can tell. Unfortunately the bisectbot was unable to show which commit might have solved the issue. Tried it several times on my 32 bit Linux VM with 'Rakudo version 2017.09-348-g830084430 built on MoarVM version 2017.09.1-575-gd4e230a69' without any prob

[perl #114124] open () error message is [LTA]

2017-10-08 Thread Jan-Olof Hendig via RT
Message still looks fine with 'This is Rakudo version 2017.09-348-g830084430 built on MoarVM version 2017.09.1-575-gd4e230a69' perhaps this ticket should be closed.

[perl #127865] Throwing a control exception within Lock.protect causes [LTA] locking behavior

2017-10-08 Thread Jan-Olof Hendig via RT
Seems to work fine, on my 32 bit VM, with 'This is Rakudo version 2017.09-348-g830084430 built on MoarVM version 2017.09.1-575-gd4e230a69'

Re: [perl #132246] .pick and .roll return incorrect results for object hashes

2017-10-08 Thread Elizabeth Mattijsen via RT
Fixed with 12fcece494e12b , tests needed > On 8 Oct 2017, at 13:18, Peter du Marchie van Voorthuysen (via RT) > wrote: > > # New Ticket Created by Peter du Marchie van Voorthuysen > # Please include the string: [perl #132246] > # in the subject line of all future correspondence about this is

Re: [perl #132246] .pick and .roll return incorrect results for object hashes

2017-10-08 Thread Elizabeth Mattijsen
Fixed with 12fcece494e12b , tests needed > On 8 Oct 2017, at 13:18, Peter du Marchie van Voorthuysen (via RT) > wrote: > > # New Ticket Created by Peter du Marchie van Voorthuysen > # Please include the string: [perl #132246] > # in the subject line of all future correspondence about this is

[perl #132246] .pick and .roll return incorrect results for object hashes

2017-10-08 Thread via RT
# New Ticket Created by Peter du Marchie van Voorthuysen # Please include the string: [perl #132246] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132246 > This is Rakudo version 2017.07 built on MoarVM version 2017.07 implem

[perl #128161] [LTA] Run time “SORRY!” when the range starts with whatever star (*...‘WAT’)

2017-10-08 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
SORRY disappeared after https://github.com/rakudo/rakudo/commit/25e9fd76e85fabda20e263b6f87e27b0673f26e2 On 2017-10-08 01:21:27, alex.jakime...@gmail.com wrote: > Code: > say ‘Hello’; say *...‘WAT’ > > Result: > Hello > No such method 'succ' for invocant of type 'Whatever'. Did you mean 'sum'? > i

[perl #128161] [LTA] Run time “SORRY!” when the range starts with whatever star (*...‘WAT’)

2017-10-08 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
Code: say ‘Hello’; say *...‘WAT’ Result: Hello No such method 'succ' for invocant of type 'Whatever'. Did you mean 'sum'? in block at -e line 1 Code: say 0, * ... "what" Result: No such method 'pred' for invocant of type 'Whatever'. Did you mean any of these? grep tree in block at -e line 1

[perl #127857] [LTA] error message when using commas in c-style “loop” (loop (my $x = 0, $x < 10, $x++) {})

2017-10-08 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
On a slightly more positive note, that PR indeed resolves this ticket. I think the new error message is clear enough. On 2017-10-08 00:52:36, alex.jakime...@gmail.com wrote: > There is a PR but it's really bad: > https://github.com/rakudo/rakudo/pull/1188 > > On 2016-04-07 17:05:15, alex.jakime...

[perl #127857] [RFC] [LTA] error message when using commas in c-style “loop” (loop (my $x = 0, $x < 10, $x++) {})

2017-10-08 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
There is a PR but it's really bad: https://github.com/rakudo/rakudo/pull/1188 On 2016-04-07 17:05:15, alex.jakime...@gmail.com wrote: > Code: > loop (my $x = 0, $x < 10, $x++) {} > > Result: > ===SORRY!=== Error while compiling -e > Malformed loop spec > at -e:1 > --> loop (my $x = 0, $x < 10,