[perl #130513] [REGRESSION] .List no longer works on shaped arrays (my @a[2;2]; say @a.List)

2017-01-04 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130513] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130513 > Code: my @a[2;2]; say @a.List Result (2015.12,2016.06): ((Any)

[perl #130511] [LTA] [REGRESSION] No such symbol '' ( &::(‘½’) )

2017-01-04 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130511] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130511 > Code: &::(‘½’) Result (2015.12,2016.11): No such symbol '&::½'

[perl #130510] [REGRESSION] Cannot assign an array of shape 2 2 to an array of shape 2 2 (my @c[2;2] .= new(:shape(2, 2), , ))

2017-01-04 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130510] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130510 > Code: my @c[2;2] .= new(:shape(2, 2), , )' Result

[perl #130509] [LTA] [REGRESSION] error message points to CORE.setting, previously it did not (my $x = fail)

2017-01-04 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130509] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130509 > Code: my $x = fail Result (2015.12,2016.05): Failed in block at

[perl #130508] [@LARRY] Backslashed digits in character classes are inconsistent (/ <[\5]> /)

2017-01-04 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130508] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130508 > First, two examples: Code: say “5” ~~ /<[\5]>/ Result: 「5」 Code:

[perl #130507] [BUG] "once" block doesn't run if it isn't reached the first time the parent block runs

2017-01-04 Thread via RT
# New Ticket Created by Michael Schaap # Please include the string: [perl #130507] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130507 > for ^10 -> $i { once { say "This runs." } say $i; once

[perl #130506] [LTA] Malformed printf pattern produces an error message without a useful line number (printf("%d, %d", 1))

2017-01-04 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130506] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130506 > Code: printf("%d, %d", 1); Result: Your printf-style directives

[perl #130505] [LTA] double SORRY (BEGIN (1, 2)[*-1])

2017-01-04 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130505] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130505 > Code: BEGIN (1, 2)[*-1] Result: ===SORRY!=== Error while compiling

[perl #130503] Hyper method call of AT-KEY/AT-POS fails with empty arrays (my @x; say @x»[0])

2017-01-04 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130503] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130503 > Code: my @x; say @x»[0] Result: This type (Scalar) does not support

[perl #130502] [LTA] error message complains too much about Metamodel.nqp (Buf.new('0'))

2017-01-04 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130502] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130502 > Code: say Buf.new('0') Result: Type check failed in initializing

[perl #130501] augment on enums

2017-01-04 Thread via RT
# New Ticket Created by Wenzel Peppmeyer # Please include the string: [perl #130501] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130501 > use MONKEY-TYPING; augment class Bool { method m { say 'oi‽' } }; (1 < 2).m # It's

[perl #130498] [BUG] roundrobin doesn't work as expected on arrays

2017-01-04 Thread Zoffix Znet via RT
per jnthn++ https://irclog.perlgeek.de/perl6-dev/2017-01-04#i_13854591 Turns out this is not a bug, but a consequence of arrays itemizing their contents. You can still use the array, but you need to ».list on it it to de-itemize the contents; same with `zip`: m: my @l = (0,1,2),(3,4,5),(6,7);

[perl #130498] [BUG] roundrobin doesn't work as expected on arrays

2017-01-04 Thread Zoffix Znet via RT
On IRC I said this was a bug, because the behaviour seemed so surprising, but now that I made a fix for it (diff attached), I find breakage in t/spec/S03-metaops/zip.t and t/spec/S32-container/roundrobin.t that test for what I see is a contradictory (to this ticket) behaviour for RT#126522.

[perl #130500] [LTA] Download Page on Rakudo.org

2017-01-04 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #130500] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130500 > See https://irclog.perlgeek.de/perl6-dev/2017-01-04#i_13854039 We had a user who's using

[perl #130498] [BUG] roundrobin doesn't work as expected on arrays

2017-01-04 Thread via RT
# New Ticket Created by Michael Schaap # Please include the string: [perl #130498] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130498 > my @l = (0,1,2),(3,4,5),(6,7); say roundrobin(|@l); outputs (((0 1 2)

[perl #127863] [BUG] MixHash not cloning properly

2017-01-04 Thread Zoffix Znet via RT
On Fri, 08 Apr 2016 14:45:30 -0700, grond...@yahoo.fr wrote: > IRC extract from today: > > 23:35 < grondilu> m: my MixHash $a .= new; my MixHash $b = $a.clone; > $a++; dd $b; > 23:35 <+camelia> rakudo-moar 40a953: OUTPUT«MixHash $b = > ("foo"=>1).MixHash␤» Thank you for the report. This is now