Headerizer docs

2007-07-03 Thread andy
Hello, this is a page from the workspace that I wanted you to see. This page is also available for viewing or editing on the web at: http://www.perlfoundation.org/parrot/index.cgi?headerizer Headerizer creates function declarations based on function definitions. It scans the source files pas

Re: Parrot and Perl 6 wikis moved to perlfoundation.org

2007-07-03 Thread Andy Lester
Thank you so much for hosting these wikis up to now! (Also, thanks Socialtext for the ongoing hosting) Thanks for sayin'. That's the problem with JFDI, is you get stuck with what you D. xoxo, Andy -- Andy Lester => [EMAIL PROTECTED] => www.petdance.com => AIM:petdance

Re: find_method changes look wrong

2007-07-03 Thread Jonathan Worthington
Allison Randal wrote: There currently isn't any way to add vtable overrides to the class's list of vtable overrides, so this is temporary (and actually, I thought you put it in). That was implemented earlier today. I wrote the email before I'd implemented it. I think I've implemented what you m

Re: Parrot and Perl 6 wikis moved to perlfoundation.org

2007-07-03 Thread Jesse Vincent
On Jun 29, 2007, at 7:30 AM, Andy Lester wrote: http://news.perl-foundation.org/2007/06/ parrot_and_perl_6_wikis_moved.html For a year or two now, I've hosted the Perl 6 and Parrot wikis on my home server, on a not-too-fast DSL line, at rakudo.org. They've now been moved to the wiki infra

[perl #43513] [docs] new content in book/ch01_overview.pod

2007-07-03 Thread via RT
# New Ticket Created by Nuno Carvalho # Please include the string: [perl #43513] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=43513 > Hi all, I spent some time around docs/book/ch01_overview.pod. Since most of this chap

[perl #43515] Parrot will not build on Win32/MinGW

2007-07-03 Thread Joshua Gatcomb
# New Ticket Created by "Joshua Gatcomb" # Please include the string: [perl #43515] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=43515 > see http://nopaste.snit.ch:8001/10585 for details or paste below - the last successf

Re: [perl #43481] t/examples/shootout.t (shootout_16.pir) fails on gentoo/x86

2007-07-03 Thread Mark Glines
On Tue, 3 Jul 2007 10:18:59 -0700 Mark Glines <[EMAIL PROTECTED]> wrote: > So, while I agree that the "crashing on NULL rep" bug needs to be > fixed, I've been mostly focusing on staring at regexdna.pir, hoping > to find a fix for the "passing a NULL rep in the first place" bug. The behavior of th

Re: find_method changes look wrong

2007-07-03 Thread Allison Randal
Jonathan Worthington wrote: Hi, Just looking at the Class and Object PMCs and a couple of things concern me. 1) Inside the method finding code I see this has been added: if ( ! PMC_IS_NULL(namespace) && VTABLE_exists_keyed_str(interp, namespace, name)) { PMC *

Re: [perl #43507] AutoReply: [BUG] yet another gc bug exposed by perl6 on windows

2007-07-03 Thread jerry gay
On 7/3/07, Parrot via RT <[EMAIL PROTECTED]> wrote: Greetings, This message has been automatically generated in response to the creation of a parrotbug regarding: "[BUG] yet another gc bug exposed by perl6 on windows" There is no need to reply to this message right now. Your ticket has

[perl #43507] [BUG] yet another gc bug exposed by perl6 on windows

2007-07-03 Thread via RT
# New Ticket Created by Jerry Gay # Please include the string: [perl #43507] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=43507 > from languages/perl6: ../../parrot perl6.pbc t/01-sanity/07-range.t causes a segfault d

Re: [perl #43481] t/examples/shootout.t (shootout_16.pir) fails on gentoo/x86

2007-07-03 Thread Mark Glines
On Tue, 3 Jul 2007 12:10:37 -0500 Andy Lester <[EMAIL PROTECTED]> wrote: > > Problem 2, why is this test case passing a NULL pointer all of a > > sudden, exposing Problem #1? Presumably, this used to work. > > That I can't tell. All I'm looking at is the underlying C code, > where it seems to

Re: [perl #43481] t/examples/shootout.t (shootout_16.pir) fails on gentoo/x86

2007-07-03 Thread Andy Lester
On Jul 3, 2007, at 12:02 PM, Mark Glines wrote: Problem 1, why does string_replace() crash when passed a NULL rep argument? Because there are derefs inside the function. Problem 2, why is this test case passing a NULL pointer all of a sudden, exposing Problem #1? Presumably, this used to

Re: [perl #43481] t/examples/shootout.t (shootout_16.pir) fails on gentoo/x86

2007-07-03 Thread Mark Glines
On Tue, 03 Jul 2007 09:34:29 -0700 "Andy Lester via RT" <[EMAIL PROTECTED]> wrote: > > Sooo... I'm not sure if the "rep" argument is NULL for the same > > *reason* as the above script (a comment from Coke has made me > > paranoid that a DOD run may be to blame), but should this emit an > > error m

Re: [svn:parrot] r19551 - trunk/src/pmc

2007-07-03 Thread chromatic
On Tuesday 03 July 2007 04:46:49 [EMAIL PROTECTED] wrote: > Fix clone v-table method of NCI PMC so that flags are retained. > > Modified: trunk/src/pmc/nci.pmc > === >=== --- trunk/src/pmc/nci.pmc   (original) > +++ trunk/

[svn:parrot-pdd] r19555 - trunk/docs/pdds/draft

2007-07-03 Thread jonathan
Author: jonathan Date: Tue Jul 3 05:38:21 2007 New Revision: 19555 Modified: trunk/docs/pdds/draft/pdd17_pmc.pod Log: [PDD17]: Properly document my proposal for how inheriting from PMCs will be made to work. Modified: trunk/docs/pdds/draft/pdd17_pmc.pod =

find_method changes look wrong

2007-07-03 Thread Jonathan Worthington
Hi, Just looking at the Class and Object PMCs and a couple of things concern me. 1) Inside the method finding code I see this has been added: if ( ! PMC_IS_NULL(namespace) && VTABLE_exists_keyed_str(interp, namespace, name)) { PMC *ret = VTABLE_get_pmc_keyed_str(