Re: Is there sn ETA for the next Rakudo* ?

2021-01-16 Thread Elizabeth Mattijsen
> On 16 Jan 2021, at 00:27, Parrot Raiser <1parr...@gmail.com> wrote: > I'm setting up a new machine, and I don't want to install something > I'm going to have to update in a week. In about a week, we will have a new Rakudo compiler release. I think the Rakudo* people will wait for that. So I w

Re: Announce: Rakudo Perl 6 compiler, Release #131 (2019.07)

2019-07-18 Thread Elizabeth Mattijsen
Patches welcome! Fact is: the JVM support group is very small. If you feel that this is important, the best way to get what you want to see in Java support, is to work on it. > On 18 Jul 2019, at 05:53, Darren Duncan wrote: > > On 2019-07-17 2:18 p.m., Aleks-Daniel Jakimenko-Aleksejev wrote:

Re: [perl #133762] Quanthashes should be parameterizable

2019-01-14 Thread Elizabeth Mattijsen via RT
Fixed for Bag/BagHash with https://github.com/rakudo/rakudo/commit/fe38bdba62 Fixed for Mix/MixHash with https://github.com/rakudo/rakudo/commit/bcc8054a4d > On 13 Jan 2019, at 22:03, Elizabeth Mattijsen via RT > wrote: > > Fixed for Set/SetHash with https://github.com/rakudo/r

Re: [perl #133762] Quanthashes should be parameterizable

2019-01-14 Thread Elizabeth Mattijsen
Fixed for Bag/BagHash with https://github.com/rakudo/rakudo/commit/fe38bdba62 Fixed for Mix/MixHash with https://github.com/rakudo/rakudo/commit/bcc8054a4d > On 13 Jan 2019, at 22:03, Elizabeth Mattijsen via RT > wrote: > > Fixed for Set/SetHash with https://github.com/rakudo/r

Re: [perl #133762] Quanthashes should be parameterizable

2019-01-13 Thread Elizabeth Mattijsen
Fixed for Set/SetHash with https://github.com/rakudo/rakudo/commit/4bb5c33c72 > On 10 Jan 2019, at 18:22, Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯 (via RT) > wrote: > > # New Ticket Created by Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯 > # Please include the string: [perl #133762] > # in the subject line of all future correspondence about t

Re: [perl #133762] Quanthashes should be parameterizable

2019-01-13 Thread Elizabeth Mattijsen via RT
Fixed for Set/SetHash with https://github.com/rakudo/rakudo/commit/4bb5c33c72 > On 10 Jan 2019, at 18:22, Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯 (via RT) > wrote: > > # New Ticket Created by Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯 > # Please include the string: [perl #133762] > # in the subject line of all future correspondence about t

Re: [perl #131599] [RFC] Allow a Callable for `is default` that will generate default values

2018-07-20 Thread Elizabeth Mattijsen
FWIW, with: http://modules.perl6.org/dist/Hash::Restricted:cpan:ELIZABETH one can restrict access to a hash to a certain set of keys: use Hash::Restricted; my %h is restricted = a => 42, b => 666; # restrict to keys at initialization my %h is restricted; # restrict to keys a, b, c > On

Re: [perl #131599] [RFC] Allow a Callable for `is default` that will generate default values

2018-07-20 Thread Elizabeth Mattijsen via RT
FWIW, with: http://modules.perl6.org/dist/Hash::Restricted:cpan:ELIZABETH one can restrict access to a hash to a certain set of keys: use Hash::Restricted; my %h is restricted = a => 42, b => 666; # restrict to keys at initialization my %h is restricted; # restrict to keys a, b, c > On

Re: [perl #133107] LTA: require of non installed module

2018-04-13 Thread Elizabeth Mattijsen via RT
The problem is actually caused by the error reporting: https://github.com/rakudo/rakudo/blob/08b951c8f33cfc702c308e64efcb44f3ec725117/src/core/Exception.pm6#L2969 The only heuristic I’ve been able to find so far that the value of $ns{$_} suddenly is no longer fully qualified if the namespace d

Re: [perl #133107] LTA: require of non installed module

2018-04-13 Thread Elizabeth Mattijsen
The problem is actually caused by the error reporting: https://github.com/rakudo/rakudo/blob/08b951c8f33cfc702c308e64efcb44f3ec725117/src/core/Exception.pm6#L2969 The only heuristic I’ve been able to find so far that the value of $ns{$_} suddenly is no longer fully qualified if the namespace d

Re: [perl #133016] Wrong set difference of Bag and List

2018-04-12 Thread Elizabeth Mattijsen via RT
Fixed with 344a64e987 , tests needed > On 24 Mar 2018, at 15:01, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > FWIW bisectable points to (2017-06-25) > https://github.com/rakudo/rakudo/commit/a2133dbc6a00d1f87bb0644c829591144381d736 > > ( before that it was giving bag(a, b) or bag(b, a)

Re: [perl #133016] Wrong set difference of Bag and List

2018-04-12 Thread Elizabeth Mattijsen
Fixed with 344a64e987 , tests needed > On 24 Mar 2018, at 15:01, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > FWIW bisectable points to (2017-06-25) > https://github.com/rakudo/rakudo/commit/a2133dbc6a00d1f87bb0644c829591144381d736 > > ( before that it was giving bag(a, b) or bag(b, a)

Re: [perl #132281] [REGRESSION] .gist of a bag used to say “bag()”, now it says “Bag()” ("blogger".comb.Bag)

2018-04-12 Thread Elizabeth Mattijsen
yes, this can be rejected. Unfortunately I don’t do RT so someone else will need to do that. > On 13 Oct 2017, at 13:48, Aleks-Daniel Jakimenko-Aleksejev > wrote: > > Oh. I guess this has to be rejected then. > > On Fri, Oct 13, 2017 at 2:46 PM, Elizabeth Mattijsen wrote

Re: [perl #133016] Wrong set difference of Bag and List

2018-03-24 Thread Elizabeth Mattijsen via RT
That does indeed look wrong to me, investigating > On 23 Mar 2018, at 15:04, Nick Wellnhofer (via RT) > wrote: > > # New Ticket Created by Nick Wellnhofer > # Please include the string: [perl #133016] > # in the subject line of all future correspondence about this issue. > # https://rt.perl

Re: [perl #133016] Wrong set difference of Bag and List

2018-03-24 Thread Elizabeth Mattijsen
That does indeed look wrong to me, investigating > On 23 Mar 2018, at 15:04, Nick Wellnhofer (via RT) > wrote: > > # New Ticket Created by Nick Wellnhofer > # Please include the string: [perl #133016] > # in the subject line of all future correspondence about this issue. > # https://rt.perl

Re: [perl #131684] Iterator and Supply might fail early if Nil is sent on a channel

2018-03-22 Thread Elizabeth Mattijsen via RT
Fixed with https://github.com/rakudo/rakudo/commit/bdd8143e6f, tests needed > On 1 Jul 2017, at 15:20, Jan-Olof Hendig (via RT) > wrote: > > # New Ticket Created by Jan-Olof Hendig > # Please include the string: [perl #131684] > # in the subject line of all future correspondence about this i

Re: [perl #131684] Iterator and Supply might fail early if Nil is sent on a channel

2018-03-22 Thread Elizabeth Mattijsen
Fixed with https://github.com/rakudo/rakudo/commit/bdd8143e6f, tests needed > On 1 Jul 2017, at 15:20, Jan-Olof Hendig (via RT) > wrote: > > # New Ticket Created by Jan-Olof Hendig > # Please include the string: [perl #131684] > # in the subject line of all future correspondence about this i

Re: [perl #131626] [PERFTEST][PERF] ≥ and ≤ are 36x slower than Texas version; ≠ is 15x slower

2018-03-01 Thread Elizabeth Mattijsen
Agree, should be closed. > On 1 Mar 2018, at 15:10, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > It seems like it is fixed properly now. See this discussion: > https://irclog.perlgeek.de/perl6-dev/2018-03-01#i_15872426 > > On 2017-10-22 08:28:20, c...@zoffix.com wrote: >> On Tue, 26 Se

Re: [perl #130020] [RFC][@LARRY] Create a set of conventions to minimize impact internal changes to user's code

2018-02-16 Thread Elizabeth Mattijsen via RT
I propose we change all onlies in the core to multis after the release and see how this breaks things / makes things slower. > On 16 Feb 2018, at 14:17, Zoffix Znet via RT > wrote: > > Spotted another case where there's impact: whether or not a routine is a > multi can have large impact on us

Re: [perl #130020] [RFC][@LARRY] Create a set of conventions to minimize impact internal changes to user's code

2018-02-16 Thread Elizabeth Mattijsen
I propose we change all onlies in the core to multis after the release and see how this breaks things / makes things slower. > On 16 Feb 2018, at 14:17, Zoffix Znet via RT > wrote: > > Spotted another case where there's impact: whether or not a routine is a > multi can have large impact on us

Re: [perl #132718] BUG: Unhandled kind 3 with int32 argument

2018-01-13 Thread Elizabeth Mattijsen via RT
> On 13 Jan 2018, at 22:38, Curt Tilmes (via RT) > wrote: > > # New Ticket Created by Curt Tilmes > # Please include the string: [perl #132718] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132718 > > > > m: sub foo(

Re: [perl #132718] BUG: Unhandled kind 3 with int32 argument

2018-01-13 Thread Elizabeth Mattijsen
> On 13 Jan 2018, at 22:38, Curt Tilmes (via RT) > wrote: > > # New Ticket Created by Curt Tilmes > # Please include the string: [perl #132718] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132718 > > > > m: sub foo(

Re: [perl #132549] Can't put() any(): This type cannot unbox to a native string

2017-12-09 Thread Elizabeth Mattijsen via RT
> On 8 Dec 2017, at 19:21, Zoffix Znet via RT > wrote: > > On Fri, 08 Dec 2017 08:28:32 -0800, comdog wrote: >> This comes from an answer to a Perl 6 question on Stackoverflow that >> showed a different bug: >> >>https://stackoverflow.com/q/45527881/2766176 >> >> With put() it does not an

Re: [perl #132549] Can't put() any(): This type cannot unbox to a native string

2017-12-09 Thread Elizabeth Mattijsen
> On 8 Dec 2017, at 19:21, Zoffix Znet via RT > wrote: > > On Fri, 08 Dec 2017 08:28:32 -0800, comdog wrote: >> This comes from an answer to a Perl 6 question on Stackoverflow that >> showed a different bug: >> >>https://stackoverflow.com/q/45527881/2766176 >> >> With put() it does not an

Re: [perl #125398] with no strict temp does not autcreate hashes and hash elements

2017-12-04 Thread Elizabeth Mattijsen via RT
Properly fixed with e5b49ce , tests needed for container type / default value of auto-defined variables. > On 3 Dec 2017, at 04:45, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > Still reproducible (2017.11,HEAD(e5b660e)) > > On 2015-06-13 05:48:13, ronaldxs wrote: >> From irc >> >> ht

Re: [perl #125398] with no strict temp does not autcreate hashes and hash elements

2017-12-04 Thread Elizabeth Mattijsen
Properly fixed with e5b49ce , tests needed for container type / default value of auto-defined variables. > On 3 Dec 2017, at 04:45, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > Still reproducible (2017.11,HEAD(e5b660e)) > > On 2015-06-13 05:48:13, ronaldxs wrote: >> From irc >> >> ht

Re: [perl #125398] with no strict temp does not autcreate hashes and hash elements

2017-12-04 Thread Elizabeth Mattijsen
The problem with let/temp for this situation has been fixed with 752299767bac3c49 . And tests are needed for that. However, the underlying issue is that the default value of container descriptors created automatically with “no strict” are Mu rather than Any. This will need some deeper research

Re: [perl #125398] with no strict temp does not autcreate hashes and hash elements

2017-12-04 Thread Elizabeth Mattijsen via RT
The problem with let/temp for this situation has been fixed with 752299767bac3c49 . And tests are needed for that. However, the underlying issue is that the default value of container descriptors created automatically with “no strict” are Mu rather than Any. This will need some deeper research

Re: [perl #122838] [BUG] BEGIN GLOBAL:: assignment does not work in Rakudo

2017-12-03 Thread Elizabeth Mattijsen via RT
If you normally create a class, the entry in GLOBAL:: is decontainerized: $ 6 'class Test {}; use nqp; dd nqp::iscont(GLOBAL::)’ 0 However, if you just assign to a key in GLOBAL::, the result *is* containerized: $ 6 'BEGIN GLOBAL:: = class { }; use nqp; dd nqp::iscont(GLOBAL::)’ 1 So maybe you

Re: [perl #122838] [BUG] BEGIN GLOBAL:: assignment does not work in Rakudo

2017-12-03 Thread Elizabeth Mattijsen
If you normally create a class, the entry in GLOBAL:: is decontainerized: $ 6 'class Test {}; use nqp; dd nqp::iscont(GLOBAL::)’ 0 However, if you just assign to a key in GLOBAL::, the result *is* containerized: $ 6 'BEGIN GLOBAL:: = class { }; use nqp; dd nqp::iscont(GLOBAL::)’ 1 So maybe you

Re: [perl #125964] [LTA] assigning to AOB List elem does not hint right

2017-12-03 Thread Elizabeth Mattijsen
Fixed with c9699ab , tests needed. Please note that this currently breaks tests 55-56 in S02-types/range.t which appear to be a little too specific for their own good. > On 3 Dec 2017, at 05:28, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > Today (2017.11,HEAD(e5b660e)) it prints thi

Re: [perl #125964] [LTA] assigning to AOB List elem does not hint right

2017-12-03 Thread Elizabeth Mattijsen via RT
Fixed with c9699ab , tests needed. Please note that this currently breaks tests 55-56 in S02-types/range.t which appear to be a little too specific for their own good. > On 3 Dec 2017, at 05:28, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > Today (2017.11,HEAD(e5b660e)) it prints thi

Re: [perl #126099] [BUG] .WHICH fails for Block but True

2017-12-03 Thread Elizabeth Mattijsen
Can be golfed to “Block but True”. Problem also existed for “Code but True”. Fixed with e31a414 . Tests needed. > On 3 Dec 2017, at 05:00, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > Still reproducible (2017.11,HEAD(e5b660e)) > > On 2015-09-18 12:12:49, zef...@fysh.org wrote: >> B

Re: [perl #126099] [BUG] .WHICH fails for Block but True

2017-12-03 Thread Elizabeth Mattijsen via RT
Can be golfed to “Block but True”. Problem also existed for “Code but True”. Fixed with e31a414 . Tests needed. > On 3 Dec 2017, at 05:00, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > Still reproducible (2017.11,HEAD(e5b660e)) > > On 2015-09-18 12:12:49, zef...@fysh.org wrote: >> B

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

2017-12-03 Thread Elizabeth Mattijsen
Those are predecessors of the “react / whenever” syntax. I think that therefore this ticket can be closed now. > On 3 Dec 2017, at 04:58, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > what is `earliest`, `more` and `wait`? > > On 2015-06-06 16:40:28, r...@hoelz.ro wrote: >> The attach

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

2017-12-03 Thread Elizabeth Mattijsen via RT
Those are predecessors of the “react / whenever” syntax. I think that therefore this ticket can be closed now. > On 3 Dec 2017, at 04:58, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > what is `earliest`, `more` and `wait`? > > On 2015-06-06 16:40:28, r...@hoelz.ro wrote: >> The attach

Re: [perl #119521] [BUG] “ctxlexpad needs an MVMContext” when reaching too far out to get to the truth in Rakudo

2017-12-02 Thread Elizabeth Mattijsen
Fixed with cd24b1c55d0c798c8fd776f , tests needed (also for OUTERS::) > On 2 Dec 2017, at 13:06, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > Still reproducible (2017.11, HEAD(5929887)) on MoarVM. > > Code: > $OUTER::OUTER::OUTER::OUTER::True > > Result: > ctxlexpad needs an MVMContex

Re: [perl #130982] [PERF] "for $a..$b -> $i { ... }" loops are sometimes much slower than c-style loops

2017-11-23 Thread Elizabeth Mattijsen via RT
> On 22 Nov 2017, at 19:31, Timo Paulssen via RT > wrote: > On Mon, 20 Nov 2017 12:13:47 -0800, ronaldxs wrote: >> What about a native perl6 range loop? Couldn't there be some way for >> Perl 6 / Rakudo to generate code competitive on a small range with the >> "native-loop" example? >> >> perl6

Re: [perl #130982] [PERF] "for $a..$b -> $i { ... }" loops are sometimes much slower than c-style loops

2017-11-23 Thread Elizabeth Mattijsen
> On 22 Nov 2017, at 19:31, Timo Paulssen via RT > wrote: > On Mon, 20 Nov 2017 12:13:47 -0800, ronaldxs wrote: >> What about a native perl6 range loop? Couldn't there be some way for >> Perl 6 / Rakudo to generate code competitive on a small range with the >> "native-loop" example? >> >> perl6

Re: [perl #132352] Set operators unfriendly to mutable types

2017-11-18 Thread Elizabeth Mattijsen via RT
Hmmm…. I guess this one does… good point! :-) > On 18 Nov 2017, at 17:57, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > Does it mean that this now needs tests? > > On 2017-10-30 06:42:25, elizabeth wrote: >>> On 24 Oct 2017, at 12:56, Zoffix Znet via RT >> follo...@perl.org> wrote: >>

Re: [perl #132352] Set operators unfriendly to mutable types

2017-11-18 Thread Elizabeth Mattijsen
Hmmm…. I guess this one does… good point! :-) > On 18 Nov 2017, at 17:57, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > Does it mean that this now needs tests? > > On 2017-10-30 06:42:25, elizabeth wrote: >>> On 24 Oct 2017, at 12:56, Zoffix Znet via RT >> follo...@perl.org> wrote: >>

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen
Fixed with be9e19efd97755cfd , tests needed! > On 10 Nov 2017, at 03:28, David Lowe wrote: > > This crash still occurs with rakudo 2017.10. > > On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT > wrote: > Greetings, > > This message has been automatically generated in response to the > creation o

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen via RT
Fixed with be9e19efd97755cfd , tests needed! > On 10 Nov 2017, at 03:28, David Lowe wrote: > > This crash still occurs with rakudo 2017.10. > > On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT > wrote: > Greetings, > > This message has been automatically generated in response to the > creation o

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen via RT
f the lock-protected block, and the proxy gets sunk outside of > it, thus causing concurrent access to the SetHash. > > > On 14/11/17 16:03, Elizabeth Mattijsen wrote: >> reducing the code to: >> >> use nqp; >> my $lock = Lock.new; >> my $hash := nqp::hash; &

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen
f the lock-protected block, and the proxy gets sunk outside of > it, thus causing concurrent access to the SetHash. > > > On 14/11/17 16:03, Elizabeth Mattijsen wrote: >> reducing the code to: >> >> use nqp; >> my $lock = Lock.new; >> my $hash := nqp::hash; &

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen
reducing the code to: use nqp; my $lock = Lock.new; my $hash := nqp::hash; await ^16 .map: { start { for ^1000 { $lock.protect: { nqp::bindkey($hash,"a",1) } $lock.protect: { nqp::deletekey($hash,"a") } } } } does *not* make it crash. So it would appear that i

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen via RT
reducing the code to: use nqp; my $lock = Lock.new; my $hash := nqp::hash; await ^16 .map: { start { for ^1000 { $lock.protect: { nqp::bindkey($hash,"a",1) } $lock.protect: { nqp::deletekey($hash,"a") } } } } does *not* make it crash. So it would appear that i

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen via RT
This does not seem to appear if you add at least one key to the set before the await. The segfault only appears to occur when adding a first or removing the last key from the SetHash. > On 10 Nov 2017, at 03:28, David Lowe wrote: > > This crash still occurs with rakudo 2017.10. > > On Thu, O

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen
This does not seem to appear if you add at least one key to the set before the await. The segfault only appears to occur when adding a first or removing the last key from the SetHash. > On 10 Nov 2017, at 03:28, David Lowe wrote: > > This crash still occurs with rakudo 2017.10. > > On Thu, O

Re: [perl #131774] [PERF] Simple, if artificial, string concatenation example hogs memory and time

2017-11-10 Thread Elizabeth Mattijsen via RT
Same, but with the new Telemetry module so you can see better what’s going on: $ perl6 -MTelemetry -e 'for (1, 10, 100, 1_000, 10_000, 100_000) -> $limit { snap; my $x; my $y = "x" x 100; $x ~= $y for 1..$limit }' Telemetry Report of Process #79213 (2017-11-10T16:24:00Z) Number of Snapshots: 7 N

Re: [perl #131774] [PERF] Simple, if artificial, string concatenation example hogs memory and time

2017-11-10 Thread Elizabeth Mattijsen
Same, but with the new Telemetry module so you can see better what’s going on: $ perl6 -MTelemetry -e 'for (1, 10, 100, 1_000, 10_000, 100_000) -> $limit { snap; my $x; my $y = "x" x 100; $x ~= $y for 1..$limit }' Telemetry Report of Process #79213 (2017-11-10T16:24:00Z) Number of Snapshots: 7 N

Re: [perl #131846] [BUG] combinations not accepting Inf/Whatever as upper bound (Regression)

2017-10-30 Thread Elizabeth Mattijsen via RT
Fixed with bdc73563f484325cc544 , tests were already added, can be closed. > On 6 Aug 2017, at 17:13, Joshua (via RT) wrote: > > # New Ticket Created by Joshua > # Please include the string: [perl #131846] > # in the subject line of all future correspondence about this issue. > # https://rt.

Re: [perl #131846] [BUG] combinations not accepting Inf/Whatever as upper bound (Regression)

2017-10-30 Thread Elizabeth Mattijsen
Fixed with bdc73563f484325cc544 , tests were already added, can be closed. > On 6 Aug 2017, at 17:13, Joshua (via RT) wrote: > > # New Ticket Created by Joshua > # Please include the string: [perl #131846] > # in the subject line of all future correspondence about this issue. > # https://rt.

Re: [perl #132377] [BUG][POD] tables inside =begin/=end comment pairs cause exception

2017-10-30 Thread Elizabeth Mattijsen via RT
A —ll-exception stacktrace would be useful in such a case :-) > On 30 Oct 2017, at 15:24, Tom Browder (via RT) > wrote: > > # New Ticket Created by Tom Browder > # Please include the string: [perl #132377] > # in the subject line of all future correspondence about this issue. > # https://rt

Re: [perl #132377] [BUG][POD] tables inside =begin/=end comment pairs cause exception

2017-10-30 Thread Elizabeth Mattijsen
A —ll-exception stacktrace would be useful in such a case :-) > On 30 Oct 2017, at 15:24, Tom Browder (via RT) > wrote: > > # New Ticket Created by Tom Browder > # Please include the string: [perl #132377] > # in the subject line of all future correspondence about this issue. > # https://rt

Re: [perl #132353] [LTA] error with using meta assign ops with bound SetHash

2017-10-30 Thread Elizabeth Mattijsen via RT
Fixed with b6a4d5b20451c5c8a, this now DWIM, tests needed. Error message being too long, fixed with 497e0582e6c64ccc04b2e9 . > On 23 Oct 2017, at 14:28, Zoffix Znet (via RT) > wrote: > > # New Ticket Created by Zoffix Znet > # Please include the string: [perl #132353] > # in the subject

Re: [perl #132353] [LTA] error with using meta assign ops with bound SetHash

2017-10-30 Thread Elizabeth Mattijsen
Fixed with b6a4d5b20451c5c8a, this now DWIM, tests needed. Error message being too long, fixed with 497e0582e6c64ccc04b2e9 . > On 23 Oct 2017, at 14:28, Zoffix Znet (via RT) > wrote: > > # New Ticket Created by Zoffix Znet > # Please include the string: [perl #132353] > # in the subject

Re: [perl #132352] Set operators unfriendly to mutable types

2017-10-30 Thread Elizabeth Mattijsen via RT
> On 24 Oct 2017, at 12:56, Zoffix Znet via RT > wrote: > On Mon, 23 Oct 2017 09:12:58 -0700, sml...@gmail.com wrote: >> On Mon, 23 Oct 2017 05:23:55 -0700, c...@zoffix.com wrote: >> The "solution", IMO, would not be to make your quoted example work (by >> adding further special cases to the retu

Re: [perl #132352] Set operators unfriendly to mutable types

2017-10-30 Thread Elizabeth Mattijsen
> On 24 Oct 2017, at 12:56, Zoffix Znet via RT > wrote: > On Mon, 23 Oct 2017 09:12:58 -0700, sml...@gmail.com wrote: >> On Mon, 23 Oct 2017 05:23:55 -0700, c...@zoffix.com wrote: >> The "solution", IMO, would not be to make your quoted example work (by >> adding further special cases to the retu

Re: [perl #132330] Sets can be equal even though their elements aren’t

2017-10-21 Thread Elizabeth Mattijsen
Which goes back to the behaviour of nqp::unbox_n(): $ 6 'use nqp; say nqp::unbox_n(1e0); say nqp::unbox_n(1e0 + 4e-15)' 1 1 > On 21 Oct 2017, at 11:30, Elizabeth Mattijsen wrote: > > The problem is that both these values have the same .WHICH: > > $ 6 'say 1e0.

Re: [perl #132330] Sets can be equal even though their elements aren’t

2017-10-21 Thread Elizabeth Mattijsen
The problem is that both these values have the same .WHICH: $ 6 'say 1e0.WHICH; say (1e0 + 4e-15).WHICH' Num|1 Num|1 Nothing to do with Sets/Bags/Mixes/object hashes. > On 20 Oct 2017, at 17:02, Victor ADAM (via RT) > wrote: > > # New Ticket Created by Victor ADAM > # Please include the str

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

2017-10-17 Thread Elizabeth Mattijsen via RT
Fixed with 8a88d14905248526415 , unfudged tests, can be closed now. > On 15 Oct 2017, at 08:54, Zoffix Znet via RT > wrote: > > On Sat, 13 May 2017 01:24:28 -0700, elizabeth wrote: >> All issues appear to be fixed with >> https://github.com/rakudo/rakudo/commit/407bce1dc2 . >> Tests are needed,

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

2017-10-17 Thread Elizabeth Mattijsen
Fixed with 8a88d14905248526415 , unfudged tests, can be closed now. > On 15 Oct 2017, at 08:54, Zoffix Znet via RT > wrote: > > On Sat, 13 May 2017 01:24:28 -0700, elizabeth wrote: >> All issues appear to be fixed with >> https://github.com/rakudo/rakudo/commit/407bce1dc2 . >> Tests are needed,

Re: [perl #132283] [REGRESSION] BUILDALL is listed as one of the methods, maybe that's not right (say $foo.^methods)

2017-10-13 Thread Elizabeth Mattijsen via RT
> On 13 Oct 2017, at 07:52, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132283] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Disp

Re: [perl #132283] [REGRESSION] BUILDALL is listed as one of the methods, maybe that's not right (say $foo.^methods)

2017-10-13 Thread Elizabeth Mattijsen
> On 13 Oct 2017, at 07:52, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132283] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Disp

Re: [perl #132281] [REGRESSION] .gist of a bag used to say “bag()”, now it says “Bag()” ("blogger".comb.Bag)

2017-10-13 Thread Elizabeth Mattijsen
> On 13 Oct 2017, at 07:37, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132281] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Dis

Re: [perl #132279] [REGRESSION][9999] BagHash.grab with huge values (("foo" => 10000000000000000000).BagHash.grab(1))

2017-10-13 Thread Elizabeth Mattijsen
Fixed with 975fcf6cfd8089bfc237 , tests needed > On 13 Oct 2017, at 07:01, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132279] > # in the subject line of all future correspondence about

Re: [perl #132279] [REGRESSION][9999] BagHash.grab with huge values (("foo" => 10000000000000000000).BagHash.grab(1))

2017-10-13 Thread Elizabeth Mattijsen via RT
Fixed with 975fcf6cfd8089bfc237 , tests needed > On 13 Oct 2017, at 07:01, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132279] > # in the subject line of all future correspondence about

Re: [perl #132236] Possible regression in Meta object construction

2017-10-10 Thread Elizabeth Mattijsen via RT
Fixed with dd943eded83edb3753 , tests needed. > On 7 Oct 2017, at 15:52, (via RT) wrote: > > # New Ticket Created by > # Please include the string: [perl #132236] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132236 > >

Re: [perl #132236] Possible regression in Meta object construction

2017-10-10 Thread Elizabeth Mattijsen
Fixed with dd943eded83edb3753 , tests needed. > On 7 Oct 2017, at 15:52, (via RT) wrote: > > # New Ticket Created by > # Please include the string: [perl #132236] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132236 > >

Re: [perl #132248] Z Metaoperator bug

2017-10-09 Thread Elizabeth Mattijsen via RT
> On 9 Oct 2017, at 10:38, jn...@jnthn.net via RT > wrote: > > On Sun, 08 Oct 2017 19:13:34 -0700, ipatrol6...@yahoo.com wrote: >> As per a discussion on the IRC channel, I am requesting that a >> regression bug be filed regarding the incorrect handling of variables >> referenced to packages by

Re: [perl #132248] Z Metaoperator bug

2017-10-09 Thread Elizabeth Mattijsen
> On 9 Oct 2017, at 10:38, jn...@jnthn.net via RT > wrote: > > On Sun, 08 Oct 2017 19:13:34 -0700, ipatrol6...@yahoo.com wrote: >> As per a discussion on the IRC channel, I am requesting that a >> regression bug be filed regarding the incorrect handling of variables >> referenced to packages by

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

2017-10-09 Thread Elizabeth Mattijsen
Fixed with 56eef6967b54b16c , tests needed > On 9 Oct 2017, at 06:38, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132249] > # in the subject line of all future correspondence about this

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

Re: [perl #132156] [LTA] Suggest polymod for bases > 36 (9123607.base(37))

2017-09-25 Thread Elizabeth Mattijsen via RT
> On 25 Sep 2017, at 08:21, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132156] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Dis

Re: [perl #132156] [LTA] Suggest polymod for bases > 36 (9123607.base(37))

2017-09-25 Thread Elizabeth Mattijsen
> On 25 Sep 2017, at 08:21, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132156] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Dis

Re: [perl #132121] [REGEX] (RFC?) Overflow of writing to captures

2017-09-18 Thread Elizabeth Mattijsen via RT
> On 18 Sep 2017, at 19:45, Zoffix Znet (via RT) > wrote: > > # New Ticket Created by Zoffix Znet > # Please include the string: [perl #132121] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132121 > > > > Apparently i

Re: [perl #132121] [REGEX] (RFC?) Overflow of writing to captures

2017-09-18 Thread Elizabeth Mattijsen
> On 18 Sep 2017, at 19:45, Zoffix Znet (via RT) > wrote: > > # New Ticket Created by Zoffix Znet > # Please include the string: [perl #132121] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132121 > > > > Apparently i

Re: [perl #132117] [LTA] Error on `eqv` with lazy Lists

2017-09-18 Thread Elizabeth Mattijsen via RT
Fixed with 66c2d05f29 , tests need attention in S03-operators/eqv.t > On 18 Sep 2017, at 14:51, Zoffix Znet (via RT) > wrote: > > # New Ticket Created by Zoffix Znet > # Please include the string: [perl #132117] > # in the subject line of all future correspondence about this issue. > # http

Re: [perl #132117] [LTA] Error on `eqv` with lazy Lists

2017-09-18 Thread Elizabeth Mattijsen
Fixed with 66c2d05f29 , tests need attention in S03-operators/eqv.t > On 18 Sep 2017, at 14:51, Zoffix Znet (via RT) > wrote: > > # New Ticket Created by Zoffix Znet > # Please include the string: [perl #132117] > # in the subject line of all future correspondence about this issue. > # http

Re: [perl #130020] [RFC][@LARRY] Create a set of conventions to minimize impact internal changes to user's code

2017-09-18 Thread Elizabeth Mattijsen via RT
> On 18 Sep 2017, at 04:39, Brian S. Julin via RT > wrote: > > On Sun, 17 Sep 2017 08:44:47 -0700, c...@zoffix.com wrote: >> More comments on similar issue: https://irclog.perlgeek.de/perl6/2017- >> 09-17#i_15176823 >> >> Basically, a lot of core constructs aren't workable with user-land >> su

Re: [perl #130020] [RFC][@LARRY] Create a set of conventions to minimize impact internal changes to user's code

2017-09-18 Thread Elizabeth Mattijsen
> On 18 Sep 2017, at 04:39, Brian S. Julin via RT > wrote: > > On Sun, 17 Sep 2017 08:44:47 -0700, c...@zoffix.com wrote: >> More comments on similar issue: https://irclog.perlgeek.de/perl6/2017- >> 09-17#i_15176823 >> >> Basically, a lot of core constructs aren't workable with user-land >> su

Re: [perl #132109] [BUG] `.skip` on a sequence starting with a `Slip`, returns a corrupted `Seq`

2017-09-17 Thread Elizabeth Mattijsen
> On 17 Sep 2017, at 07:29, Sam S. (via RT) > wrote: > > # New Ticket Created by Sam S. > # Please include the string: [perl #132109] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132109 > > > > When calling `.skip` on

Re: [perl #132109] [BUG] `.skip` on a sequence starting with a `Slip`, returns a corrupted `Seq`

2017-09-17 Thread Elizabeth Mattijsen via RT
> On 17 Sep 2017, at 07:29, Sam S. (via RT) > wrote: > > # New Ticket Created by Sam S. > # Please include the string: [perl #132109] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132109 > > > > When calling `.skip` on

Re: [perl #132030] [REGRESSION] Broken Text::CSV tests and possibly other ecosystem fallout

2017-09-11 Thread Elizabeth Mattijsen
Fixed with 3c9cfdba88287e23e0ced8 (and further refined by later commits), tests needed. > On 6 Sep 2017, at 15:38, jn...@jnthn.net via RT > wrote: > > On Tue, 05 Sep 2017 09:11:19 -0700, allber...@gmail.com wrote: >> On Tue, Sep 5, 2017 at 5:40 AM, jn...@jnthn.net via RT < >> perl6-bugs-follo

Re: [perl #132030] [REGRESSION] Broken Text::CSV tests and possibly other ecosystem fallout

2017-09-11 Thread Elizabeth Mattijsen via RT
Fixed with 3c9cfdba88287e23e0ced8 (and further refined by later commits), tests needed. > On 6 Sep 2017, at 15:38, jn...@jnthn.net via RT > wrote: > > On Tue, 05 Sep 2017 09:11:19 -0700, allber...@gmail.com wrote: >> On Tue, Sep 5, 2017 at 5:40 AM, jn...@jnthn.net via RT < >> perl6-bugs-follo

Re: [perl #132042] [BUG] rakudo hangs while concurrently walking trees

2017-09-06 Thread Elizabeth Mattijsen via RT
> On 6 Sep 2017, at 22:46, J . David Lowe (via RT) > wrote: > > # New Ticket Created by J . David Lowe > # Please include the string: [perl #132042] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132042 > > > > This sh

Re: [perl #132042] [BUG] rakudo hangs while concurrently walking trees

2017-09-06 Thread Elizabeth Mattijsen
> On 6 Sep 2017, at 22:46, J . David Lowe (via RT) > wrote: > > # New Ticket Created by J . David Lowe > # Please include the string: [perl #132042] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132042 > > > > This sh

Re: [perl #132030] [REGRESSION] Broken Text::CSV tests and possibly other ecosystem fallout

2017-09-06 Thread Elizabeth Mattijsen via RT
> On 6 Sep 2017, at 15:38, jn...@jnthn.net via RT > wrote: > To recap the IRC discussion yesterday: no, we haven't had this so far (except > for stdout/stderr), and have gotten away with it due to the lack of output > buffering. At present, we can either choose between: > > 1) Start keeping a

Re: [perl #132030] [REGRESSION] Broken Text::CSV tests and possibly other ecosystem fallout

2017-09-06 Thread Elizabeth Mattijsen
> On 6 Sep 2017, at 15:38, jn...@jnthn.net via RT > wrote: > To recap the IRC discussion yesterday: no, we haven't had this so far (except > for stdout/stderr), and have gotten away with it due to the lack of output > buffering. At present, we can either choose between: > > 1) Start keeping a

Re: [perl #132029] Floppage of atomic tests

2017-09-05 Thread Elizabeth Mattijsen via RT
FWIW, I couldn’t get this to fail on my MBP *while* running make spectest with TEST_JOBS=8 Perhaps this is OS / CPU / compiler dependent? > On 5 Sep 2017, at 09:17, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > Oh. A crude way to reproduce it is: > > while :; do clear; PERL6LIB=lib ./

Re: [perl #132029] Floppage of atomic tests

2017-09-05 Thread Elizabeth Mattijsen
FWIW, I couldn’t get this to fail on my MBP *while* running make spectest with TEST_JOBS=8 Perhaps this is OS / CPU / compiler dependent? > On 5 Sep 2017, at 09:17, Aleks-Daniel Jakimenko-Aleksejev via RT > wrote: > > Oh. A crude way to reproduce it is: > > while :; do clear; PERL6LIB=lib ./

Re: [perl #132006] Instant.Instant is missing (say now.Instant)

2017-08-31 Thread Elizabeth Mattijsen via RT
Fixed with 51709e01c0788c466af , tests needed. > On 31 Aug 2017, at 22:05, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132006] > # in the subject line of all future correspondence about

Re: [perl #132006] Instant.Instant is missing (say now.Instant)

2017-08-31 Thread Elizabeth Mattijsen
Fixed with 51709e01c0788c466af , tests needed. > On 31 Aug 2017, at 22:05, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132006] > # in the subject line of all future correspondence about

Re: [perl #131962] [REGRESSION] `Pair.kv`/`.keys`/.`values` dies if either the key or the value is `Mu`

2017-08-26 Thread Elizabeth Mattijsen via RT
Fixed with a5014fd0855545cc083b3590 , tests needed. > On 26 Aug 2017, at 13:10, Sam S. (via RT) > wrote: > > # New Ticket Created by Sam S. > # Please include the string: [perl #131962] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Dis

Re: [perl #131962] [REGRESSION] `Pair.kv`/`.keys`/.`values` dies if either the key or the value is `Mu`

2017-08-26 Thread Elizabeth Mattijsen
Fixed with a5014fd0855545cc083b3590 , tests needed. > On 26 Aug 2017, at 13:10, Sam S. (via RT) > wrote: > > # New Ticket Created by Sam S. > # Please include the string: [perl #131962] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Dis

Re: [perl #126951] [BUG] Interpolating a typed hash into an argument list produces wrong keys

2017-08-26 Thread Elizabeth Mattijsen
Fixed with 6cec6b7218650aff1780a4dd , tests needed > On 26 Aug 2017, at 10:35, Sam S. via RT wrote: > > Shorter test-case: > >➜ say :{ a => 1, b => 2 }.FLATTENABLE_HASH; >{Str|a => a => 1, Str|b => b => 2} > > Compare to a normal Hash which works fine: > >➜ say { a => 1, b => 2

Re: [perl #126951] [BUG] Interpolating a typed hash into an argument list produces wrong keys

2017-08-26 Thread Elizabeth Mattijsen via RT
Fixed with 6cec6b7218650aff1780a4dd , tests needed > On 26 Aug 2017, at 10:35, Sam S. via RT wrote: > > Shorter test-case: > >➜ say :{ a => 1, b => 2 }.FLATTENABLE_HASH; >{Str|a => a => 1, Str|b => b => 2} > > Compare to a normal Hash which works fine: > >➜ say { a => 1, b => 2

Re: [perl #131919] [RFC] Returning Failure from failed P6-level .parse

2017-08-17 Thread Elizabeth Mattijsen via RT
> On 17 Aug 2017, at 18:11, Zoffix Znet via RT > wrote: > > On Thu, 17 Aug 2017 08:50:48 -0700, alex.jakime...@gmail.com wrote: >> See this... > > See also timotimo++'s comment that TimToady cleared a revert if there were > fallout: > raschipi, gfldex, timtoady already said he'd retract the

  1   2   3   4   5   6   7   >