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

2015-09-28 Thread via RT
# 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/Ticket/Display.html?id=126212 > 09:24 < TimToady> m: say 1, |(2 xx 65534) 09:24 <+camelia> rakudo-moar cd8ce4:

Re: Bug creating objects using some form of named arguments

2015-09-28 Thread mt1957
On 09/28/2015 07:16 PM, mt1957 wrote: False alarm, had a typing error in the code so, mea culpa poli :-[ . Hi Below a set of tests where all object creates are done well except for the last one using a sub or method returning the created object. class X { has Str $.a; } my X $x .=

Bug creating objects using some form of named arguments

2015-09-28 Thread mt1957
Hi Below a set of tests where all object creates are done well except for the last one using a sub or method returning the created object. class X { has Str $.a; } my X $x .= new(a => 'abc'); say "\$x = {$x.perl}"; $x .= new(:a('abc')); say "\$x = {$x.perl}"; $x .= new :a('abc'); say

[perl #126159] [DOC] IterationEnd special cases

2015-09-28 Thread Will Coleda via RT
Based on http://irclog.perlgeek.de/perl6/2015-09-24#i_11268009, documentation added to http://docs.perl6.org/type/Iterator -- Will "Coke" Coleda

error message about here doc

2015-09-28 Thread mt1957
Using a heredoc and by accident adding '#' unindented, generated the following error; Asked to remove 2 spaces, but the shortest indent is 0 spaces in any trim_heredoc at gen/moar/m-Perl6-Actions.nqp:78 The here doc used was; spurt 'Sandbox/m-auth.conf', $config ~ qq:to/EOCNF/; security:

Re: Misunderstanding when usng elems on undefined Array

2015-09-28 Thread Moritz Lenz
Hi, On 09/25/2015 05:46 PM, mt1957 wrote: Found the following using Array; > my Array $a; > say $a.elems; 1 > $a.push(1) [1] > say $a.perl [1] > say $a.elems 1 > my Array $a .= new; [] > say $a.elems; 0 Seems that an uninitialized Array reports one element but pushing values on the

Re: [perl #126208] [BUG] Many threads results in data corruption

2015-09-28 Thread Moritz Lenz
On 09/27/2015 11:58 PM, Benjamin Goldberg (via RT) wrote: # New Ticket Created by Benjamin Goldberg # Please include the string: [perl #126208] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126208 > The code at

[perl #126205] better problem definition

2015-09-28 Thread emilbarton
Hi, I posted a bug report yesterday with a complicated script and worked to make it simpler. Now I think it's probably not a bug but I'm still unable to find a solution. My new definition of the problem is sent in 2 attachments and can also be seen on

[perl #126195] 'trap' argument is fatal for older TAP::Harness

2015-09-28 Thread via RT
# New Ticket Created by Nicholas Clark # Please include the string: [perl #126195] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126195 > commit f3476903e466c047 added 'trap' to the list of arguments that t/harness invokes

[perl #126215] LTA error message when doing Any eq 'x'

2015-09-28 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #126215] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126215 > Code: say Any eq 'x'; Result: Use of uninitialized value of type Any in string