[perl #126913] *%_ slurpy unexpectedly wins against explicit named param in multi-dispatch

2015-12-14 Thread via RT
# New Ticket Created by Sam S. # Please include the string: [perl #126913] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126913 > Consider this code: multi x (:$a, *%_) { say 1 } multi x (:$b) { say 2 } x :b

[perl #126914] Block less try fails to catch exception

2015-12-14 Thread via RT
# New Ticket Created by nadim khemir # Please include the string: [perl #126914] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126914 > http://nopaste.linux-dev.org/?881078&download

[perl #126915] follow up on RT 126914

2015-12-14 Thread via RT
# New Ticket Created by nadim khemir # Please include the string: [perl #126915] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126915 > https://rt.perl.org/Ticket/Display.html?id=126914 http://nopaste.linux-dev.org/?881099

[perl #126212] [BUG] SEGV on 16-bit-sized arg insertion

2015-12-14 Thread jn...@jnthn.net via RT
On Tue Sep 29 01:40:18 2015, mt1...@gmail.com wrote: > On 09/28/2015 06:52 PM, Larry Wall (via RT) wrote: > > # New Ticket Created by Larry Wall > > # Please include the string: [perl #126212] > > # in the subject line of all future correspondence about this issue. > > # https://rt.perl.org/Ticke

Re: [perl #126913] *%_ slurpy unexpectedly wins against explicit named param in multi-dispatch

2015-12-14 Thread Elizabeth Mattijsen
> On 14 Dec 2015, at 09:10, Sam S. (via RT) > wrote: > > # New Ticket Created by Sam S. > # Please include the string: [perl #126913] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=126913 > > > > Consider this code: >

[BUG][perl #126876] t\spec\S32-io\io-spec-win.t fails on Windows 10 with MSVS 2013

2015-12-14 Thread A. Sinan Unur
> I am afraid I do not know where to go from here, but FYI. Pull request submitted. I hope this is the right place to do that: https://github.com/perl6/roast/pull/87 The fix I propose is to invoke methods on $*SPEC rather than IO::Spec. HTH, -- Sinan

Re: [perl #126876][BUG] t\spec\S32-io\io-spec-win.t fails on Windows 10 with MSVS 2013

2015-12-14 Thread A. Sinan Unur
> I am afraid I do not know where to go from here, but FYI. Pull request submitted. I hope this is the right place to do that: https://github.com/perl6/roast/pull/87 The fix I propose is to invoke methods on $*SPEC rather than IO::Spec. HTH, -- Sinan

Re: [perl #126882] public interface returning internals

2015-12-14 Thread nadim khemir
documenting it and showing the little bit of code would be a good help for the next person. Me, I am happy already :) On Sat, Dec 12, 2015 at 8:37 AM, Moritz Lenz via RT < perl6-bugs-follo...@perl.org> wrote: > On Fri Dec 11 10:35:08 2015, nadim.khe...@gmail.com wrote: > > ^attributes returns BOO

[perl6/specs] 9fe53e: some new entries

2015-12-14 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 9fe53edd1da0385d1284daf50876ea0b99efefb6 https://github.com/perl6/specs/commit/9fe53edd1da0385d1284daf50876ea0b99efefb6 Author: Stéphane Payrard Date: 2015-12-14 (Mon, 14 Dec 2015) Changed paths: M S

[perl #126894] Cannot create Debian package with current rakudo-star build system

2015-12-14 Thread via RT
# New Ticket Created by Dominique Dumont # Please include the string: [perl #126894] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126894 > Hello I'm trying to create a rakudo-star package for Debian using pre-installed moar

[perl #126541] Expose native file descriptor for handle like objects.

2015-12-14 Thread jn...@jnthn.net via RT
On Mon Nov 02 10:54:27 2015, jns...@gellyfish.co.uk wrote: > Hi, > In a number of places in the design documents it is suggested that > certain functionality on files (e.g. fcntl, ioctl) or sockets (e.g. > getsockname, setsockopt) should be provided by external modules via > the NativeCall interfac

[perl #126876] [BUG] t\spec\S32-io\io-spec-win.t fails on Windows 10 with MSVS 2013

2015-12-14 Thread Brent Laabs via RT
> Pull request submitted. I hope this is the right place to do that: > > https://github.com/perl6/roast/pull/87 I approved the pull request. If the tests pass on Windows, this ticket can be resolved.

[perl #126846] [NYI] UDP sockets is not implemented

2015-12-14 Thread jn...@jnthn.net via RT
Support for UDP has now been added to IO::Socket::Async, and tests covering it are in S32-io/IO-Socket-Async-UDP.t.