[perl #77820] [BUG] NaN.Rat

2010-09-13 Thread Jonathan Leto
# New Ticket Created by Jonathan Leto # Please include the string: [perl #77820] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=77820 Howdy, $ git rev-parse HEAD 9993bb24d7d109485fe78a6afd463671912c6960 $ ./perl6

[perl #77778] spec test failures on rakudo 7517e39, parrot r48909 (using --gen-parrot) on 64bit linux

2010-09-11 Thread Jonathan Leto
# New Ticket Created by Jonathan Leto # Please include the string: [perl #8] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=8 Howdy, I am seeing these spectest failures: Test Summary Report

Question about @_ for a sub given no arguments

2010-06-29 Thread Jonathan Leto
Howdy, I have a question about @_[0] for a sub that defines no arguments. In the current Rakudo I get: $ parrot ./perl6.pbc my $r = sub { say @_[0].WHAT }; $r.() Proxy() whereas Pugs calls it a Scalar. Which is correct? I have looked through S06, but I can't find anything related to this.

Loading Rakudo's perl6.pbc from the Parrot embedding API

2010-06-04 Thread Jonathan Leto
Howdy, I am trying to load an installed perl6.pbc from the Parrot embedding API like this: #include parrot/embed.h #include parrot/extend.h Parrot_Interp interp; int main(int argc, char *argv[]) { Parrot_PMC func_pmc; Parrot_String err, filename; Parrot_set_config_hash();

Re: Loading Rakudo's perl6.pbc from the Parrot embedding API

2010-06-04 Thread Jonathan Leto
Howdy, This PIR code .sub main load_bytecode '/Users/leto/svn/parrot/installed_parrot/lib/2.4.0-devel/languages/perl6/perl6.pbc' .end gives the exact same error message, so this issue does not appear to be specific to the Parrot embedding API. Duke -- Jonathan Duke Leto

[perl #64958] Fixes for log10 of Complex numbers

2009-04-22 Thread Jonathan Leto
# New Ticket Created by Jonathan Leto # Please include the string: [perl #64958] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64958 Howdy, The attached patch makes calling log10 as a method on Complex numbers work

[perl #57316] multisub in Test.pm causes complex subtraction to fail

2008-07-27 Thread Jonathan Leto
# New Ticket Created by Jonathan Leto # Please include the string: [perl #57316] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=57316 Howdy folks, I have attached a diff which includes a patch to is_approx