[perl #66388] [BUG] Cannot put Pod after a role declaration statement in Rakudo

2009-06-08 Thread Patrick R. Michaud via RT
On Mon Jun 08 06:51:53 2009, masak wrote: > Rakudo doesn't support '=begin SUMMARY' Pod syntax!? [...] > rakudo: role A;␤=begin SUMMARY␤This be a summary.␤=end > SUMMARY␤say "OH HAI" > rakudo 5f70a6: OUTPUT«Unable to parse role definition at line > 2, near ";\n=begin S" [...] > ah. there we go.

[perl #66404] [BUG] Arraystatevariable assignment on declaration

2009-06-08 Thread via RT
# New Ticket Created by Johan Viklund # Please include the string: [perl #66404] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66404 > In Rakudo this works: (my @s)[0] //= 0; But this does not: (state @s)[0] //= 0; Err

[perl #66364] Strange results with chars/bytes/graphs methods

2009-06-08 Thread Patrick R. Michaud via RT
On Sun Jun 07 00:57:34 2009, patmar19 wrote: > When I try pugs or perl6 I get strange results whith Str methods : > > pugs -e 'say "1234é".chars' => 5 > perl6 -e 'say "1234é".chars' => 6 > > pugs -e 'say "1234é".bytes' => 6 > perl6 -e 'say "1234é".bytes' => 8 > > pugs -e 'say "1234é".graphs' =>

[perl #66394] [BUG] STD.pm allows anything before a statement role declaration, Rakudo doesn't

2009-06-08 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66394] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66394 > from S12: "The first form [the 'role A;' one] is allowed only as the first declaration

[perl #66398] missing spec tests for filetest methods

2009-06-08 Thread via RT
# New Ticket Created by Hugo van der Sanden # Please include the string: [perl #66398] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66398 > t/spec/S16-filehandles/filetest.t covers only a selection of the filetest methods

[perl #66352] reduce with user-defined sub fail

2009-06-08 Thread via RT
# New Ticket Created by Daniel Ruoso # Please include the string: [perl #66352] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66352 > rakudo: multi a (Str $a, Str $b) { [+$a, +$b] }; multi a (Array $a, $b where '+') { [+]

[perl #66388] [BUG] Cannot put Pod after a role declaration statement in Rakudo

2009-06-08 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66388] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66388 > Rakudo doesn't support '=begin SUMMARY' Pod syntax!? ruoso: and having the as a separa

[perl #66366] [BUG] Running .Str on an Int doesn't stringify the integer in Rakudo

2009-06-08 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66366] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66366 > rakudo: 1.Str.say rakudo 290012: OUTPUT«Int()<0xb61f5450>␤» * masak submits rakudobug

[perl #66364] Strange results with chars/bytes/graphs methods

2009-06-08 Thread via RT
# New Ticket Created by Patrick MARION # Please include the string: [perl #66364] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66364 > When I try pugs or perl6 I get strange results whith Str methods : pugs -e 'say "1234

[perl #66350] [BUG] Internal Parrot error when smartmatching a string against a regex with 'when'

2009-06-08 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66350] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66350 > rakudo: grammar A { regex b { foo } }; given "foo" { when A::b { say "OH HAI" } } raku