[perl #129944] [NATIVECALL][BUG] C-API for C++ returns a "Malformed UTF-8" error when assigning a string value to a private member of a class with set interface and calling it with get interface.

2016-10-22 Thread via RT
# New Ticket Created by Itsuki Toyota # Please include the string: [perl #129944] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=129944 > See the following codes and results: t/04-utf8.t use v6; use Test; use NativeCall;

[perl #129911] [BUG] Rat literals Misinterpreted as regex in signatures

2016-10-22 Thread Zoffix Znet via RT
>From what I understand, this syntax produces 1 divided by 3, which gets later >interpreted into something plague-baring. To specify a literal Rat, use angled brackets, which works without requiring any fixes: m: multi foo (<1/3>) {say "Rat!" }; multi foo ($) { say "something else" }; foo 1/3

Re: [BUG] Perl 6 text file line read is much slower than Perl 5

2016-10-22 Thread Tom Browder
On Saturday, October 22, 2016, Elizabeth Mattijsen via RT < perl6-bugs-follo...@perl.org> wrote: > Would you believe it used to be a lot slower still? > > Anyways, what does P6/P5 mean?? If it’s the runtimes divided, I get > values between 9 and 10 or so. Which would be less surprising to me.

Re: [perl #129941] [BUG] Perl 6 text file line read is much slower than Perl 5

2016-10-22 Thread Elizabeth Mattijsen
Would you believe it used to be a lot slower still? Anyways, what does P6/P5 mean?? If it’s the runtimes divided, I get values between 9 and 10 or so. Which would be less surprising to me. > On 22 Oct 2016, at 13:24, Tom Browder (via RT) > wrote: > > # New Ticket Created by Tom Browder

[perl #129941] [BUG] Perl 6 text file line read is much slower than Perl 5

2016-10-22 Thread via RT
# New Ticket Created by Tom Browder # Please include the string: [perl #129941] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=129941 > See for a suite of tests that show th