Re: Announce: Rakudo Star Release 2017.07

2017-07-24 Thread ToddAndMargo
On 07/24/2017 11:40 AM, Steve Mynott wrote: A useful and usable production distribution of Perl 6 On behalf of the Rakudo and Perl 6 development teams, I'm pleased to announce the July 2017 release of "Rakudo Star", a useful and usable production distribution of Perl 6. The tarball for the July

Re: [perl #131789] LTA error message: unexpected argument

2017-07-24 Thread Juerd Waalboer
Zoffix Znet via RT skribis 2017-07-24 10:51 (-0700): > But the error for that code does already say `in sub bar`: > m: sub bar {}; bar :42foo > rakudo-moar 2fb8c7: OUTPUT: «Unexpected named argument 'foo' passed␤ in > sub bar at line 1␤ I was catching exceptions and printing them

Re: [perl #131789] LTA error message: unexpected argument

2017-07-24 Thread Juerd Waalboer via RT
Zoffix Znet via RT skribis 2017-07-24 10:51 (-0700): > But the error for that code does already say `in sub bar`: > m: sub bar {}; bar :42foo > rakudo-moar 2fb8c7: OUTPUT: «Unexpected named argument 'foo' passed␤ in > sub bar at line 1␤ I was catching exceptions and printing them

Re: [perl #131778] AutoReply: BUG: IO::Socket::INET

2017-07-24 Thread Michael Lowe
Some additional testing. If I disable IPv6 on my ethernet adapter, everything works. If I re-enable IPv6, it no longer works. Possibly something on my end? but all other software and dev environments work normally without disabling IPv6. Mike Lowe (513) 417-0570 mlowe31...@gmail.com On Sat, Jul

[perl #131778] BUG: IO::Socket::INET

2017-07-24 Thread Michael Lowe via RT
Some additional testing. If I disable IPv6 on my ethernet adapter, everything works. If I re-enable IPv6, it no longer works. Possibly something on my end? but all other software and dev environments work normally without disabling IPv6.

Re: [perl #131781] :?smth should construct a truthy pair (say (:?foo))

2017-07-24 Thread Jonathan Scott Duff via RT
The OP said :?foo should work because :foo and :!foo work. I don't follow the logic. How are those things related? Why should :foo and :!foo imply :?foo? (In my head it makes as much sense as ":foo and :!foo implies :*foo", which is to say, none.) I don't see any benefit to adding a :?foo

[perl #131778] BUG: IO::Socket::INET

2017-07-24 Thread via RT
# New Ticket Created by Michael Lowe # Please include the string: [perl #131778] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131778 > Hello, I've run into a bug in IO::Socket::INET. Windows 10 perl6 -v This is Rakudo

Re: Announce: Rakudo Star Release 2017.07

2017-07-24 Thread Steve Mynott
I've just uploaded the Win64 version and I'm still building the Mac one (which won't take long) S On 24 July 2017 at 20:29, wrote: > > Quoting Darren Duncan : > >> On 2017-07-24 11:40 AM, Steve Mynott wrote: >>> >>> A useful and usable production

Re: Announce: Rakudo Star Release 2017.07

2017-07-24 Thread zoffix
Quoting Darren Duncan : On 2017-07-24 11:40 AM, Steve Mynott wrote: A useful and usable production distribution of Perl 6 The download links on http://rakudo.org/how-to-get-rakudo/ still name the April release and will need updating. -- Darren Duncan I updated

Re: Announce: Rakudo Star Release 2017.07

2017-07-24 Thread Darren Duncan
On 2017-07-24 11:40 AM, Steve Mynott wrote: A useful and usable production distribution of Perl 6 The download links on http://rakudo.org/how-to-get-rakudo/ still name the April release and will need updating. -- Darren Duncan

Re: [perl #131789] LTA error message: unexpected argument

2017-07-24 Thread Elizabeth Mattijsen via RT
> On 24 Jul 2017, at 19:51, Zoffix Znet via RT > wrote: > > On Mon, 24 Jul 2017 07:15:54 -0700, ju...@tnx.nl wrote: >> It would be more awesome if "Unexected named argument 'foo' passed" was >> supplemented with the name of the function to which it was passed. >>

Re: [perl #131789] LTA error message: unexpected argument

2017-07-24 Thread Elizabeth Mattijsen
> On 24 Jul 2017, at 19:51, Zoffix Znet via RT > wrote: > > On Mon, 24 Jul 2017 07:15:54 -0700, ju...@tnx.nl wrote: >> It would be more awesome if "Unexected named argument 'foo' passed" was >> supplemented with the name of the function to which it was passed. >>

Announce: Rakudo Star Release 2017.07

2017-07-24 Thread Steve Mynott
A useful and usable production distribution of Perl 6 On behalf of the Rakudo and Perl 6 development teams, I'm pleased to announce the July 2017 release of "Rakudo Star", a useful and usable production distribution of Perl 6. The tarball for the July 2017 release is available from

[perl #131789] LTA error message: unexpected argument

2017-07-24 Thread Zoffix Znet via RT
On Mon, 24 Jul 2017 07:15:54 -0700, ju...@tnx.nl wrote: > It would be more awesome if "Unexected named argument 'foo' passed" was > supplemented with the name of the function to which it was passed. > > sub xyzzy ($x, :$foo = False) { ... } > sub bar ($y) { ... } > > xyzzy( >

[perl #131789] LTA error message: unexpected argument

2017-07-24 Thread Zoffix Znet via RT
On Mon, 24 Jul 2017 07:15:54 -0700, ju...@tnx.nl wrote: > It would be more awesome if "Unexected named argument 'foo' passed" was > supplemented with the name of the function to which it was passed. > > sub xyzzy ($x, :$foo = False) { ... } > sub bar ($y) { ... } > > xyzzy( >

[perl #131791] Custom class :D coersers don't work

2017-07-24 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #131791] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131791 > The coercion works fine here: 17:03 Zoffix m: class B {…}; class A { method B { B.new

[perl #131790] [BUG] :delete silently fails on lazy Arrays

2017-07-24 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #131790] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131790 > m: my @a is default(42) = 1...*; @a[1]:delete; say @a[1]:exists; .say for @a[^10]

[perl #131789] LTA error message: unexpected argument

2017-07-24 Thread via RT
# New Ticket Created by Juerd Waalboer # Please include the string: [perl #131789] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=131789 > It would be more awesome if "Unexected named argument 'foo' passed" was supplemented

[perl #131781] :?smth should construct a truthy pair (say (:?foo))

2017-07-24 Thread Will Coleda via RT
On Sat, 22 Jul 2017 09:12:31 -0700, c...@zoffix.com wrote: > On Sat, 22 Jul 2017 07:53:26 -0700, alex.jakime...@gmail.com wrote: > > This should work: > > > > Code: > > say (:?foo); > > > > Result: > > ===SORRY!=== Error while compiling -e > > Bogus statement > > at -e:1 > > --> say (:⏏?foo);

[perl #131781] :?smth should construct a truthy pair (say (:?foo))

2017-07-24 Thread Will Coleda via RT
On Sat, 22 Jul 2017 09:12:31 -0700, c...@zoffix.com wrote: > On Sat, 22 Jul 2017 07:53:26 -0700, alex.jakime...@gmail.com wrote: > > This should work: > > > > Code: > > say (:?foo); > > > > Result: > > ===SORRY!=== Error while compiling -e > > Bogus statement > > at -e:1 > > --> say (:⏏?foo);

Re: [perl #131783] [LTA] :delete holes in Arrays get turned to Mus when coercing to List or Slip

2017-07-24 Thread Elizabeth Mattijsen via RT
> On 23 Jul 2017, at 22:27, Sam S. via RT wrote: > >> Which then goes back to: what is the use case of Slipping an Array? > > Same as slipping any other type of Iterable: Fine-grained, elegant flattening > and concatenating. > > Compare: > > my @all = flat

Re: [perl #131783] [LTA] :delete holes in Arrays get turned to Mus when coercing to List or Slip

2017-07-24 Thread Elizabeth Mattijsen
> On 23 Jul 2017, at 22:27, Sam S. via RT wrote: > >> Which then goes back to: what is the use case of Slipping an Array? > > Same as slipping any other type of Iterable: Fine-grained, elegant flattening > and concatenating. > > Compare: > > my @all = flat