[perl #131003] [SEGV] Heap corruption when using Gumbo

2017-05-13 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
FWIW the problem is still there and is reproducible with the provided snippet (just in case somebody is wondering if the issue went away by itself after these months). On 2017-04-04 06:46:20, scoli...@gmail.com wrote: > Le Wed, 15 Mar 2017 17:12:00 -0700, alex.jakime...@gmail.com a écrit : > > I

[perl #131310] Can't subset native types

2017-05-13 Thread via RT
# New Ticket Created by Daniel Green # Please include the string: [perl #131310] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131310 > [19:15] m: subset uint15 of uint16 where 0 <= * <= 32775; my uint15 $a = 1 [19:15]

[perl #122990] [BUG] Matching an integer capture against a signature with a native integer coercing to Str fails (when it should succeed) in Rakudo

2017-05-13 Thread Daniel Green via RT
On Thu, 16 Oct 2014 10:43:27 -0700, masak wrote: > I'm about to close > https://rt.perl.org/Ticket/Display.html?id=118581 (because it no > longer segfaults). > just curious: what *should* this return? > m: say \(1) ~~ :(1) > rakudo-moar 329ed9: OUTPUT«True␤» > m: say \(1) ~~ :(Int) >

[perl #131299] Test failure on Raspberry Pi (2017.04)

2017-05-13 Thread via RT
# New Ticket Created by Parrot Raiser # Please include the string: [perl #131299] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131299 > make rakudo-tests failed t/04-nativecall/02-simple-args.t at line 62 passed uint8

[perl #131300] [BUG] MoarVM panic if you check for membership in undefined Set

2017-05-13 Thread via RT
# New Ticket Created by Curt Tilmes # Please include the string: [perl #131300] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131300 > m: say 1 ∈ (Set) ?? 'present' !! 'not present'; rakudo-moar dc5eec: OUTPUT: «MoarVM

[perl #131307] warning-less sub closure over a variable declared later in same scope

2017-05-13 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #131307] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131307 > https://irclog.perlgeek.de/perl6-dev/2017-05-13#i_14576917 16:35 Zoffix m: my $x =

[perl #131306] [SPESH] Incorrect results with `uint32` types after +> was made to handle large ints

2017-05-13 Thread Zoffix Znet via RT
Worth noting Rakudo change wasn't the only change. The actual fix was in MoarVM: https://github.com/MoarVM/MoarVM/commit/362277b79fef8bfa45ad44a4062a05785187ddfe

[perl #131306] [SPESH] Incorrect results with `uint32` types after +> was made to handle large ints

2017-05-13 Thread Zoffix Znet via RT
Worth noting Rakudo change wasn't the only change. The actual fix was in MoarVM: https://github.com/MoarVM/MoarVM/commit/362277b79fef8bfa45ad44a4062a05785187ddfe

[perl #131306] [SPESH] Incorrect results with `uint32` types after +> was made to handle large ints

2017-05-13 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #131306] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131306 > Before ef29bb9f41aa5d[^1], the +> op special cased large shifts and large numbers. Now

[perl #131305] Useless Useless Use Warning when invoking colonpaired routines

2017-05-13 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #131305] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131305 > The `constant value [ ]` is not uselessly used here, as the warning claims: m: say

Re: [perl #131303] [BUG] [LTA] bag operation fails and leaks internal state

2017-05-13 Thread Elizabeth Mattijsen via RT
The problem was actually in setting values in (Bag|Mix)Hash. The problem could be golfed to: my $b = BagHash.new; $b = 42; $b.total Fixed in https://github.com/rakudo/rakudo/commit/4c813666df . Tests needed > On 13 May 2017, at 12:27, Jan-Olof Hendig (via RT) >

Re: [perl #131303] [BUG] [LTA] bag operation fails and leaks internal state

2017-05-13 Thread Elizabeth Mattijsen
The problem was actually in setting values in (Bag|Mix)Hash. The problem could be golfed to: my $b = BagHash.new; $b = 42; $b.total Fixed in https://github.com/rakudo/rakudo/commit/4c813666df . Tests needed > On 13 May 2017, at 12:27, Jan-Olof Hendig (via RT) >

Re: [perl #131303] [BUG] [LTA] bag operation fails and leaks internal state

2017-05-13 Thread Elizabeth Mattijsen via RT
Argh. This is waiting for the refactor of (-) . Looking at how quickly I can do this while at the PTS. > On 13 May 2017, at 12:27, Jan-Olof Hendig (via RT) > wrote: > > # New Ticket Created by Jan-Olof Hendig > # Please include the string: [perl #131303] > #

Re: [perl #131303] [BUG] [LTA] bag operation fails and leaks internal state

2017-05-13 Thread Elizabeth Mattijsen
Argh. This is waiting for the refactor of (-) . Looking at how quickly I can do this while at the PTS. > On 13 May 2017, at 12:27, Jan-Olof Hendig (via RT) > wrote: > > # New Ticket Created by Jan-Olof Hendig > # Please include the string: [perl #131303] > #

[perl #131303] [BUG] [LTA] bag operation fails and leaks internal state

2017-05-13 Thread via RT
# New Ticket Created by Jan-Olof Hendig # Please include the string: [perl #131303] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131303 > # the system dogbert@dogbert-VirtualBox ~/repos/rakudo $ ./perl6 -v This is Rakudo

Re: [perl #131300] [BUG] MoarVM panic if you check for membership in undefined Set

2017-05-13 Thread Elizabeth Mattijsen
All issues appear to be fixed with https://github.com/rakudo/rakudo/commit/407bce1dc2 . Tests are needed, also for the ⊇ and ⊉ and associated cases. > On 12 May 2017, at 21:22, Zoffix Znet via RT > wrote: > On Fri, 12 May 2017 12:07:11 -0700, c...@tilmes.org

Re: [perl #131300] [BUG] MoarVM panic if you check for membership in undefined Set

2017-05-13 Thread Elizabeth Mattijsen via RT
All issues appear to be fixed with https://github.com/rakudo/rakudo/commit/407bce1dc2 . Tests are needed, also for the ⊇ and ⊉ and associated cases. > On 12 May 2017, at 21:22, Zoffix Znet via RT > wrote: > On Fri, 12 May 2017 12:07:11 -0700, c...@tilmes.org

Re: [perl #131290] is default() doesn't work on attributes

2017-05-13 Thread Elizabeth Mattijsen via RT
> On 13 May 2017, at 03:45, Brad Gilbert via RT > wrote: > On Fri, 12 May 2017 03:04:46 -0700, elizabeth wrote: >> m: class A { has Int $.a is default(42) }; dd A.new.a >> # expected to see 42 there, not Int, so feels like "is default" on >> attrs isn't

Re: [perl #131290] is default() doesn't work on attributes

2017-05-13 Thread Elizabeth Mattijsen
> On 13 May 2017, at 03:45, Brad Gilbert via RT > wrote: > On Fri, 12 May 2017 03:04:46 -0700, elizabeth wrote: >> m: class A { has Int $.a is default(42) }; dd A.new.a >> # expected to see 42 there, not Int, so feels like "is default" on >> attrs isn't