[perl #130709] Issue with dynamic loading of module

2017-02-02 Thread via RT
# New Ticket Created by Chris Fields # Please include the string: [perl #130709] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130709 > I am running into a bug that seems to have appeared after lexical module loading was fix

Re: [perl #130689] rapid network interaction crashes something

2017-02-02 Thread Robert Lemmen
On Thu, Feb 02, 2017 at 10:38:10AM -0800, Zoffix Znet via RT wrote: > Can't reproduce on 2017.01-121-gf94cb21. Your client script is using > $conn_count and $echo_count but neither is defined. What values are those > supposed to be at? Is there anything else missing? sorry, didn't mean to snip t

Re: [perl #130690] AutoReply: [BUG] [CONC] attribute from one role used in another via private method gone missing

2017-02-02 Thread Justin DeVuyst
Note that running under MVM_SPESH_DISABLE=1 seems to elide the bug. On 2017.02.01 01:01 pm, perl6 via RT wrote: Greetings, This message has been automatically generated in response to the creation of a trouble ticket regarding: "[BUG] [CONC] attribute from one role used in another via p

[perl #130707] "double free or corruption" in MVM_profile_instrument

2017-02-02 Thread via RT
# New Ticket Created by Robert Lemmen # Please include the string: [perl #130707] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130707 > a small program: 8<-- use v6; use HTTP::Ser

Re: [perl #130355] [RESOLVED] S/// within map doesn't work

2017-02-02 Thread Brian Duggan
Great. I tested the original example with the change and verified that it works. ./perl6 -e 'say .map({S/a/x/}).perl' ("x1", "x2", "x3").Seq thanks! Brian

[perl #130689] rapid network interaction crashes something

2017-02-02 Thread via RT
# New Ticket Created by Robert Lemmen # Please include the string: [perl #130689] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130689 > hi everyone, I have these two tiny pieces of code: ---8<-- ser

[perl #130706] Return in block doesn't see outside return signature

2017-02-02 Thread Zoffix Znet via RT
No idea if there's any relation between the two, but there's also this ticket where a return type constraint set to Nil on a sub affects interpolation of a code block in a string inside that sub; almost as if the constraint propagated to it: https://rt.perl.org/Ticket/Display.html?id=129874#tick

[perl #130706] Return in block doesn't see outside return signature

2017-02-02 Thread via RT
# New Ticket Created by Elizabeth Mattijsen # Please include the string: [perl #130706] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130706 > m: sub a(--> 42) { { return } }; dd a # expected 42 <+camelia> raku

[perl #130689] rapid network interaction crashes something

2017-02-02 Thread Zoffix Znet via RT
On Wed, 01 Feb 2017 09:03:37 -0800, rober...@semistable.com wrote: > hi everyone, > > I have these two tiny pieces of code: > > ---8<-- server.p6 -- > my $listen = IO::Socket::INET.new(:listen, :localhost<127.0.0.1>, > :localport()); > loop { >