[perl #127213] POD after =finish isn't picked up in $=pod

2016-01-08 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #127213] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127213 > See attached file.say $=pod; =head1 TITLE Test =finish =head1 DESCRIPTION Testing

Re: [perl #127207] [LTA ERROR] (or maybe a bug)

2016-01-08 Thread Elizabeth Mattijsen
> On 08 Jan 2016, at 00:16, Zoffix Znet (via RT) > wrote: > > # New Ticket Created by Zoffix Znet > # Please include the string: [perl #127207] > # in the subject line of all future correspondence about this issue. > #

Re: [perl #126990] Inf in Int, LTA error message, Inf.Range (-Inf..Inf vs -Inf^..^Inf)

2016-01-08 Thread Elizabeth Mattijsen
> On 22 Dec 2015, at 16:04, Alex Jakimenko (via RT) > wrote: > > # New Ticket Created by Alex Jakimenko > # Please include the string: [perl #126990] > # in the subject line of all future correspondence about this issue. > #

Re: [perl #127208] Non-deterministic segfaults in parallel code

2016-01-08 Thread Nicholas Clark
Something between your mail client and my mail client hates us: On Thu, Jan 07, 2016 at 03:29:49PM -0800, curtis_ovid_...@yahoo.com wrote: > This code sometimes segfaults, sometimes tells me it's a malloc error: >     my @primes = grep { .is-prime }, 1 .. *; my @p = gather for 4000, 5, 100, >

[perl #127214] [BUG] Not getting the nice "Illegally post-declared type" error for types with :: in them in Rakudo

2016-01-08 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #127214] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127214 > m: class C { has $.x = D.new }; class D {} rakudo-moar af8798: OUTPUT«===SORRY!===

Re: [perl #127210] uint behaves like signed int in CUnion

2016-01-08 Thread Elizabeth Mattijsen
> On 08 Jan 2016, at 03:20, Juerd Waalboer (via RT) > wrote: > > # New Ticket Created by Juerd Waalboer > # Please include the string: [perl #127210] > # in the subject line of all future correspondence about this issue. > #

[perl #127215] Negative codepoint in .comb + /:m/

2016-01-08 Thread via RT
# New Ticket Created by Juerd Waalboer # Please include the string: [perl #127215] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127215 > $ perl6 -e'say "hello".comb(/:m <[o]>/)' ===SORRY!=== chr codepoint cannot

Re: [perl #127033] threads, dynamic variables lost sometimes

2016-01-08 Thread Lloyd Fournier
Zoffix++ lead to the discovery of a similar bug which can be golfed to: 00:16 < llfourn> m: my $*A = 42; do { start { $*A++ } }; sleep 2; say $*A 00:16 <+camelia> rakudo-moar fbe0a6: OUTPUT«42␤» if you put the block outside the start {} you don't get an error but you don't get the side affects.