[perl #74600] .fmt{%x} conversion broken for strings

2010-04-24 Thread via RT
# New Ticket Created by Life U. Everything # Please include the string: [perl #74600] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74600 > [20:47:16] > rakudo: say "8192".fmt{'%x'} <##wrong> [20:47:18] > rakudo 395433: O

[perl #68074] where-clauses in parametric role signatures produce internal error

2010-04-24 Thread jn...@jnthn.net via RT
On Fri Jul 31 03:19:31 2009, ml...@physik.uni-wuerzburg.de wrote: > 12:16 <@moritz_> rakudo: role A[Int $x where { $x % 2 == 0 }] { method s { > 'even' } }; role A[Int $x where{ $x % 2 == 1 }] { > method s { > 'odd' } }; class X does A[5]; say X.new.s > 12:16 < p6e

[perl #74608] [BUG] &time doesn't complain about getting arguments in Rakudo

2010-04-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74608] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74608 > rakudo: my $a = time; (time - $a).say; my $b = time; ($b-$a).say; # masak: Is it right?

[perl #74606] [BUG] Null PMC access on '1, +* ... *' in Rakudo

2010-04-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74606] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74606 > rakudo: say say (1, + * ... *).perl rakudo 6783b5: OUTPUT«␤Null PMC access in find_met

[perl #74624] [BUG] Any + 0.1 is a Num, not a Rat in Rakudo

2010-04-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74624] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74624 > rakudo: say 0.1.WHAT.perl; rakudo 6783b5: OUTPUT«Rat␤» rakudo: my $a; $a += 0.1; say

[perl #74626] [BUG] Rat + 0.1 dies in Rakudo

2010-04-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74626] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74626 > rakudo: my Rat $a; $a += 0.1 for ^10 rakudo a1159c: OUTPUT«Type objects are abstract a

[perl #74592] [BUG] Null PMC access or imcc syntax error for non-our package or any package not in sink context in Rakudo

2010-04-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74592] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74592 > rakudo: my $x = package {...} rakudo 7d43ee: OUTPUT«error:imcc:syntax error, unexpecte

[perl #74032] [BUG] Null PMC access when class does something which hasn't been declared in Rakudo

2010-04-24 Thread jn...@jnthn.net via RT
On Sat Apr 03 11:07:03 2010, masak wrote: > rakudo: class Animal does Pet { }; role Pet does Bite { }; > role Bite { method bite() { say "ouch" } }; > rakudo 020a6a: OUTPUT«Null PMC access in type() [...] > * masak submits rakuodbug > rakudo: class A does B {} > rakudo 020a6a: OUTPUT«Null PMC a

[perl #74586] Block beginning with semicolon shouldn't be a hash

2010-04-24 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #74586] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74586 > 21:24 <@moritz_> rakudo: say ({; $_ => 1}).WHAT 21:24 <+p6eval> rakudo 43f110: OUTPUT«Has

[perl #74622] GatherIterator.perl flattens output sometimes.

2010-04-24 Thread Mark J. Reed
# New Ticket Created by "Mark J. Reed" # Please include the string: [perl #74622] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74622 > > say ((1,2) X ).perl (1, "a", 1, "b", 2, "a", 2, "b") Which makes it looks flat, but

[perl #74610] [BUG] &printf sometimes fails silently rather than loudly in Rakudo

2010-04-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74610] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74610 > * moritz_ found a very weird bug rakudo: printf 'foobar' rakudo 6783b5: OUTPUT«foobar»

[perl #67278] non-awesome error message on 'class NewClass does OldClass'

2010-04-24 Thread jn...@jnthn.net via RT
On Mon Jul 06 23:55:28 2009, moritz wrote: > 08:53 <@moritz_> rakudo: class A { }; class B does A { }; say "alive" > 08:53 < p6eval> rakudo 99ad1e: OUTPUT«Method '!select' not found for > invocant of class ''␤» > While at some point we may end up spec'ing that you actually get your class snapshott