Announce: Rakudo Perl 6 compiler, Release #107 (2017.01)

2017-01-20 Thread zoffix
# Announce: Rakudo Perl 6 compiler, Release #107 (2017.01) On behalf of the Rakudo development team, I’m very happy to announce the January 2017 release of Rakudo Perl 6 #107. Rakudo is an implementation of Perl 6 on the Moar Virtual Machine[^1]. This release implements the 6.c version of the Pe

Re: [perl #130512] Proc::Async STDIN isn't handled correctly for all apps

2017-01-20 Thread David E.
It sounds like the functionality here would be a low-priority feature request, that perhaps might belong in a separate module from a technical perspective. In either case, the official documentation ( https://docs.perl6.org/type/Proc::Async) needs to be updated to reflect this limitation. Providi

[perl #130439] [REGRESSION] splice no longer attempts to numify things (@a.splice: ^3)

2017-01-20 Thread Zoffix Znet via RT
The original fix was reverted in https://github.com/rakudo/rakudo/commit/121e5e32e9 per discussion https://irclog.perlgeek.de/perl6-dev/2017-01-21#i_13962511

[perl #130606] [BUG} RatStr Regression P6opaque: no such attribute '$!denominator'

2017-01-20 Thread Zoffix Znet via RT
On Fri, 20 Jan 2017 12:28:43 -0800, david.warring wrote: > [09:20] bisect: sub clip-to ($min, $v is rw, $max) { $v = > ($min > max $v) min $max }; sub blah ( Array() :$rgbd ) { clip-to 0, $_, 255 > for > @$rgbd; }; blah(rgbd => <.086, .165, .282> ); > [09:20] <+bisectable6> dwarring, Bisecting by

[perl #130603] Test (module) fails while all tests return ok

2017-01-20 Thread Zoffix Znet via RT
On Fri, 20 Jan 2017 09:16:18 -0800, mt1...@gmail.com wrote: > Hi Will, > > How can it happen that a test gets hurt in this way? If I know this I > could better search for the problem. > > Regards, > Marcel Hi, Here's how that error happens: The TAP protocol[^1] expects tests to be numbered and

[perl #130606] [BUG} RatStr Regression P6opaque: no such attribute '$!denominator'

2017-01-20 Thread via RT
# New Ticket Created by David Warring # Please include the string: [perl #130606] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130606 > [09:20] bisect: sub clip-to ($min, $v is rw, $max) { $v = ($min max $v) min $max }; sub

[perl #130590] HyperWhatever does not work with reduction metaop ([+] **)

2017-01-20 Thread Zoffix Znet via RT
On Thu, 19 Jan 2017 18:10:27 -0800, alex.jakime...@gmail.com wrote: > I guess it is supposed to work? Isn't this the case where HyperWhatever is used as a term by itself, so you're passing it itself to [+] metaop and doesn't curry and hence its complaining. Same's with regular Whatever: m: dd

Re: [perl #130603] Test (module) fails while all tests return ok

2017-01-20 Thread mt1957
Hi Will, How can it happen that a test gets hurt in this way? If I know this I could better search for the problem. Regards, Marcel On 01/20/2017 05:24 PM, Will Coleda via RT wrote: On Fri, 20 Jan 2017 06:09:00 -0800, mt1...@gmail.com wrote: Hi, Since using Log::Async in MongoDB I get pro

[perl #130603] Test (module) fails while all tests return ok

2017-01-20 Thread Will Coleda via RT
On Fri, 20 Jan 2017 06:09:00 -0800, mt1...@gmail.com wrote: > Hi, > > Since using Log::Async in MongoDB I get problems while testing. All > tests run ok but at the end the Test returns failure > > > ... > > ok 6 - Testing explain and performance using hint > > 2017-01-20 13:04:40.783616 [I] 1

[perl #130590] HyperWhatever does not work with reduction metaop ([+] **)

2017-01-20 Thread Will Coleda via RT
On Thu, 19 Jan 2017 18:10:27 -0800, alex.jakime...@gmail.com wrote: > I guess it is supposed to work? Why? -- Will "Coke" Coleda

[perl #130604] Weirdness when mixing `..` and `...` without parens

2017-01-20 Thread via RT
# New Ticket Created by Sam S. # Please include the string: [perl #130604] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130604 > When the operators `..` and `...` are used in the same comma-separated list, without disambigua

[perl #130603] Test (module) fails while all tests return ok

2017-01-20 Thread via RT
# New Ticket Created by mt1957 # Please include the string: [perl #130603] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130603 > Hi, Since using Log::Async in MongoDB I get problems while testing. All tests run ok but at t

[perl #130602] [BUG] `1, 2 Xand "ab".ords` fails with "Cannot invoke this object (REPR: Uninstantiable; Callable)"

2017-01-20 Thread via RT
# New Ticket Created by Sam S. # Please include the string: [perl #130602] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130602 > ➜ say 1, 2 Xand "ab".ords; Cannot invoke this object (REPR: Uninstantiable; Callable)

Re: [perl #130599] [LTA] [REGRESSION] internal backtrace is spewed when trying to assign to a Blob type object (Blob[2] = 100)

2017-01-20 Thread Elizabeth Mattijsen
Fixed with https://github.com/rakudo/rakudo/commit/66b2fc2c3c , tests needed > On 20 Jan 2017, at 07:37, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #130599] > # in the subject line of al

[perl #130601] [REGRESSION] “next” inside whenever no longer works (react { whenever foo() { next if $_ > 3 } })

2017-01-20 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #130601] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130601 > Code: sub foo { supply { emit($_) for 1..10; }; }; react { whenever f