[perl #127421] : multi sub infix:<==> (Int $a, Str $b) { $a == $b } hangs in COMPILE time

2016-09-17 Thread Zoffix Znet via RT
On Fri Jan 29 06:50:08 2016, pawel.pab...@getresponse.com wrote: > multi sub infix:<==> (Int $a, Str $b) { $a == $b } > > Will never finish compilation on Rakudo 6.c and causes severe memory > leak. I found that: > > 1. Types must be different in signature > (Int $a, Str $b) # hangs > (Str $a,

[perl #129296] Regression: splitting non-binary handles no longer works

2016-09-17 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #129296] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=129296 > 06:05:08 bisectable6oops: run(:out, "ls").out.encoding.say 06:05:09

Announce: Rakudo Perl 6 compiler, Release #103 (2016.09)

2016-09-17 Thread zoffix
# Announce: Rakudo Perl 6 compiler, Release #103 (2016.09) On behalf of the Rakudo development team, I’m very happy to announce the September 2016 release of Rakudo Perl 6 #103. Rakudo is an implementation of Perl 6 on the Moar Virtual Machine[^1]. This release implements the 6.c version of

Re: Killer Features of Perl 6

2016-09-17 Thread Tony Edwardson
Hi Kaare It went well thanks and was well received. My brief slides can be seen here As you will see, I concluded that there is lots of good new stuff in Perl6 most of which fall in to the 'nice to have' category rather than Killer features

Re: unicode

2016-09-17 Thread Timo Paulssen
On 17/09/16 13:34, Moritz Lenz wrote:>> Searching further I found the ucd2c.pl program in the Moarvm tools >> directory. This generates the unicode_db.c somewhere else in the >> rakudo tree. I run this program myself on the Unicode 9.0.0 >> database and comparing the generated files shows many

Re: unicode

2016-09-17 Thread MT
Hi, I am looking forward to it Thanks, Marcel On Sat, Sep 17, 2016 at 01:34:45PM +0200, Moritz Lenz wrote: Hi, On 17.09.2016 13:12, MT wrote: The date found in the file unicode_db.c file is 2012-07-20 which is about Unicode version 6.1.0 So the content in that file is not getting updated

Re: unicode

2016-09-17 Thread Nicholas Clark
On Sat, Sep 17, 2016 at 01:34:45PM +0200, Moritz Lenz wrote: > Hi, > > On 17.09.2016 13:12, MT wrote: > > The date found in the file unicode_db.c file is 2012-07-20 which is > > about Unicode version 6.1.0 So the content in that file is not getting updated when the shipped Unicode version is

Re: unicode

2016-09-17 Thread MT
Searching further I found the ucd2c.pl program in the Moarvm tools directory. This generates the unicode_db.c somewhere else in the rakudo tree. I run this program myself on the Unicode 9.0.0 database and comparing the generated files shows many differences between the one in the rakudo tree

[perl #129291] [BUG] problems when run()ning two procs and passing the :out of one to the :in of the other

2016-09-17 Thread via RT
# New Ticket Created by Daniel Green # Please include the string: [perl #129291] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=129291 > This happens sometime in the whateverable bots when passing the output of decompressing

Re: subset problem

2016-09-17 Thread yary
On Sat, Sep 17, 2016 at 4:21 AM, MT wrote: > Btw the following has the same problem; > > > my Hash $h = {a=>1,b=>2} > {a => 1, b => 2} > > $h:exists > True > > subset mh of Str where $h{$_}:exists > (mh) > > my mh $x = 'b' > Type check failed in assignment to $x; expected mh

Re: unicode

2016-09-17 Thread Moritz Lenz
Hi, On 17.09.2016 13:12, MT wrote: > Searching further I found the ucd2c.pl program in the Moarvm tools > directory. This generates the unicode_db.c somewhere else in the rakudo > tree. I run this program myself on the Unicode 9.0.0 database and > comparing the generated files shows many

unicode

2016-09-17 Thread MT
Hi, I am wondering if perl 6 is keeping up pace with unicode versions. I've done the following after I have seen that the method/sub uniprop() did not give proper results all the time using data from the PropList.txt taken from Unicode version 9.0.0. E.g.

Re: subset problem

2016-09-17 Thread MT
Hi, thanks for all your ideas, I have used the enum before but turned to Map for some reason, don't know why (getting old I think (hopefully)). But still, should I open a ticket for the Map/subset thing? Btw the following has the same problem; > my Hash $h = {a=>1,b=>2} {a => 1, b => 2} >