[perl #130435] [REGRESSION] UNIT::EXPORT and Foo::EXPORT are no longer comparable (Foo::EXPORT === UNIT::EXPORT)

2016-12-28 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130435] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130435 > Code: unit module Foo; sub foo() is export {}; say Foo::EXPORT === UN

[perl #130434] [LTA] X::TypeCheck.gotn returns too short messages for displaying types in NativeCall

2016-12-28 Thread via RT
# New Ticket Created by Itsuki Toyota # Please include the string: [perl #130434] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130434 > See the following results: $ perl6 -Ilib t/01-basic.t  Type check failed in binding; ex

[perl #130433] [REGRESSION] .comb no longer produces a Seq (‘hello’.comb(/./))

2016-12-28 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130433] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130433 > Code: say ‘hello’.comb(/./).perl Result (2016.10): ("h", "e", "l",

[perl #130432] [REGRESSION] Changed behavior when assigning to array but not providing all elements (@b[1, 2, 3] = True)

2016-12-28 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130432] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130432 > Code: my @b; @b[1, 2, 3] = True; @b.perl.say Result (2015.10): [Any

[perl #130431] [REGRESSION] Subclassing an Int no longer works flawlessly (my Foo $a .= new(42))

2016-12-28 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130431] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130431 > Code: class Mebibytes is Int { method Str { (self/1024/1024).Int ~ "M

[perl #130430] [REGRESSION] .lines($limit) on ArgFiles no longer uses $limit as a limit ($*ARGFILES.lines(100))

2016-12-28 Thread Zoffix Znet via RT
On Wed, 28 Dec 2016 17:38:33 -0800, alex.jakime...@gmail.com wrote: > Instead, it returns exactly $limit results. > > Code: > say +$*ARGFILES.lines(100) # to replicate, run it with one line on > stdin > > Result (2015.12): > 1 > > Result (HEAD): > 100 > > > Bisectable points to > https://githu

[perl #130430] [REGRESSION] .lines($limit) on ArgFiles no longer uses $limit as a limit ($*ARGFILES.lines(100))

2016-12-28 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130430] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130430 > Instead, it returns exactly $limit results. Code: say +$*ARGFILES.li

Re: [perl #130427] Rat.Range includes Infs when it shouldn't (Rat.Range)

2016-12-28 Thread Elizabeth Mattijsen
Fixed with 347271d214198a700, tests needed > On 28 Dec 2016, at 21:29, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #130427] > # in the subject line of all future correspondence about this

Re: [perl #130418] chdir appears to throw exception immediately

2016-12-28 Thread Elizabeth Mattijsen
Welcome to the world of the newio branch > On 28 Dec 2016, at 20:03, Zoffix Znet via RT > wrote: > > Some comments from moritz: > https://irclog.perlgeek.de/perl6-dev/2016-12-28#i_13813983 > And a short comment from TimToady on the topic: > https://irclog.perlgeek.de/perl6-dev/2016-12-28#i_13

[perl #130427] Rat.Range includes Infs when it shouldn't (Rat.Range)

2016-12-28 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130427] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130427 > Similarly to https://rt.perl.org/Ticket/Display.html?id=126990 Code:

[perl #130426] Junction:D ~~ Bool seems to always return False

2016-12-28 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #130426] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130426 > Seems regardless of what Junction I use, smartmatch against Bool type object always retur

[perl #130418] chdir appears to throw exception immediately

2016-12-28 Thread Zoffix Znet via RT
Some comments from moritz: https://irclog.perlgeek.de/perl6-dev/2016-12-28#i_13813983 And a short comment from TimToady on the topic: https://irclog.perlgeek.de/perl6-dev/2016-12-28#i_13814034 I also notice our *subs* throw, while *methods* fail(). The subs call the methods, check for failures

[perl #130425] [PARSER] foo C.new: method form call tries to call `foo` routine if newline is present after ":"

2016-12-28 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #130425] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130425 > $ ./perl6 -e $'class C { method foo { say 10 } }; foo C.new:\n' ===SORRY!=== Error while c

[perl #130424] [BUG] repeated part in full class name causes role to be undeclared in compilation

2016-12-28 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #130424] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130424 > Hi, it seems to be the case that when part of a full class name is repeated, that roles

[perl #130418] chdir appears to throw exception immediately

2016-12-28 Thread Zoffix Znet via RT
On Tue, 27 Dec 2016 13:28:19 -0800, comdog wrote: > Using chdir with a non-existent directory appear to throw the > exception > immediately rather than using fail. A bit of a discussion for why chdir throws: https://irclog.perlgeek.de/perl6-dev/2016-12-28#i_13810888 But on further inspection, I