Re: PDD 15 - accessing parent's attributes

2007-09-24 Thread Allison Randal
Jonathan Worthington wrote: PMC* get_attr_keyed(PMC* key, STRING* idx) void set_attr_keyed(PMC* key, STRING* idx, PMC* value) :write _keyed is consistent, but not particularly descriptive - it's not *really* a keyed access that we're doing here. _super maybe is better, though I'm not sure I li

[perl #45737] [PATCH] [NEW] Change interface to all configuration step runstep() methods

2007-09-24 Thread via RT
# New Ticket Created by James Keenan # Please include the string: [perl #45737] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=45737 > This patch is submitted in response to a question which I posed in http://rt.perl.org/

Re: [perl #45697] [PROPOSAL][IMCC] Remove optional comma for sub flags

2007-09-24 Thread Allison Randal
Klaas-Jan Stol (via RT) wrote: I propose to remove the optional comma for .sub flags. [...] sub :load :init :main # ... end Agreed and approved. Please take the usual deprecation steps, and make a quick note of the syntax change in the draft PIR PDD (docs/pdds/draft/pdd19_pir.pod). Thanks

Re: [perl #45703] [PATCH] my 1st patch: cleaning up some headerizer warnings as noted in RT 45593

2007-09-24 Thread Bernhard Schmalhofer
[EMAIL PROTECTED] (via RT) schrieb: # New Ticket Created by [EMAIL PROTECTED] # Please include the string: [perl #45703] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=45703 > As a start of contributing to parrot, I clean

Re: [perl #45697] [PROPOSAL][IMCC] Remove optional comma for sub flags

2007-09-24 Thread Bernhard Schmalhofer
Klaas-Jan Stol (via RT) schrieb: .sub :load, :init :main ## newbies may wonder why there's a comma sometimes #... .end Instead, it should look like this: .sub :load :init :main # ... .end The version without the ',' looks saner and consistency is a good thing. So I second this proposal. Re

Parrot Bug Summary

2007-09-24 Thread Parrot Bug Summary
Parrot Bug Summary http://rt.perl.org/rt3/NoAuth/parrot/Overview.html Generated at Mon Sep 24 12:40:04 2007 GMT --- * Numbers * New Issues * Overview of Open Issues * Ticket Status By Version * Requestors with m

Re: [perl #45695] [PATCH] Remove seemingly unnecessary Parrot_cont->from_ctx

2007-09-24 Thread Leopold Toetsch
Am Sonntag, 23. September 2007 20:19 schrieb Bram Geron: > To test if 'from_ctx' is redundant, I tried removing the field and all > accesses to it, and no extra tests failed (see patch). Did you run a memory leak test? The from_ctx is refcounted for some reason. leo

Re: [perl #45695] [PATCH] Remove seemingly unnecessary Parrot_cont->from_ctx

2007-09-24 Thread Mehmet Yavuz Selim Soyturk
> -if (cc->from_ctx) > -Parrot_free_context(interp, cc->from_ctx, 0); > -Parrot_free_context(INTERP, from_ctx, 1); I don't know much about this context stuff, so maybe I don't see something, but how are those contexts freed after your patch?

[perl #45703] [PATCH] my 1st patch: cleaning up some headerizer warnings as noted in RT 45593

2007-09-24 Thread via RT
# New Ticket Created by [EMAIL PROTECTED] # Please include the string: [perl #45703] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=45703 > As a start of contributing to parrot, I cleaned a file of the headerizer warnings

[perl #45695] [PATCH] Remove seemingly unnecessary Parrot_cont->from_ctx

2007-09-24 Thread via RT
# New Ticket Created by Bram Geron # Please include the string: [perl #45695] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=45695 > Parrot_cont (the internal structure storing info about (Ret)Continuations) has two fields

[perl #45697] [PROPOSAL][IMCC] Remove optional comma for sub flags

2007-09-24 Thread via RT
# New Ticket Created by Klaas-Jan Stol # Please include the string: [perl #45697] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=45697 > Hi, .sub-routines have flags, such as :load, :main, etc. These flags can currently b