Re: [perl #53976] [CAGE] Remove tools/dev/ops_renum.mak

2008-05-10 Thread chromatic
On Sat, May 10, 2008 at 08:22:53PM -0700, Will Coleda wrote: > This make file isn't preprocessed like the standard root.in: it > assumes perl is in your path, and redefines the list of OPSFILES. > > Let's move the step into the core makefile, and add another > --maintainer tweak like the one for

[perl #53976] [CAGE] Remove tools/dev/ops_renum.mak

2008-05-10 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #53976] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=53976 > This make file isn't preprocessed like the standard root.in: it assumes perl is in your p

Re: [perl #53890] [BUG] [PATCH] Ordered hash gc bug

2008-05-10 Thread chromatic
On Saturday 10 May 2008 08:15:01 NotFound wrote: > The attached patch makes explicit the assumptions about non-nullness > in parrot_mark_hash and asserts them. Thanks, applied as r27432. Ideally this is unnecessary, but if it helps clear up other GC bugs, we can fix their hash marking as well.

[perl #53954] [PATCH] r27417 build fails on MSVC

2008-05-10 Thread chromatic via RT
Thanks, applied as r27430.

[perl #53924] [PATCH] t/op/sysinfo.t typos

2008-05-10 Thread chromatic via RT
Thanks, applied with a couple of tweaks as r27429.

[perl #53850] [PATCH] Add class name to exception attribute already exists

2008-05-10 Thread chromatic via RT
Thanks, applied as r27428.

[perl #53738] [PATCH] for file "tools/dev/install_files.sh"

2008-05-10 Thread chromatic via RT
Thanks, applied in r27427.

[perl #53552] [PATCH] for file "config/gen/makefiles/root.in"

2008-05-10 Thread chromatic via RT
Thanks, applied as r27426.

[perl #53548] [PATCH] fix for auto-generation of runtime/parrot/include/interpflags.pasm

2008-05-10 Thread chromatic via RT
I tried this patch, and I'm getting warnings: Generating runtime/parrot/include...Use of uninitialized value in hash element at config/gen/parrot_include.pm line 105, <$fh> line 32. Use of uninitialized value in pattern match (m//) at config/gen/parrot_include.pm line 105, <$fh> line 32. .

Re: [perl #53968] [PROPOSAL] Deprecate and remove 'Super' PMC

2008-05-10 Thread Patrick R. Michaud
On Sat, May 10, 2008 at 02:37:19PM -0700, chromatic via RT wrote: > On Saturday 10 May 2008 14:19:30 Patrick R.Michaud wrote: > > I vote we deprecate remove Super entirely, since there doesn't > > appear to anything using it. PDD15 defines other methods to > > do what the Super PMC was intended to

Re: [perl #53968] [PROPOSAL] Deprecate and remove 'Super' PMC

2008-05-10 Thread chromatic
On Saturday 10 May 2008 14:19:30 Patrick R.Michaud wrote: > While scanning through RT tickets I noticed RT#41557, which > involved some changes to the 'Super' PMC. However, PDD15 > has since superceded much of the object implementation, and > a quick 'ack "Super"' on the repository shows that the

[perl #53968] [PROPOSAL] Deprecate and remove 'Super' PMC

2008-05-10 Thread via RT
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #53968] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=53968 > While scanning through RT tickets I noticed RT#41557, which involved some changes

[perl #53956] [BUG] copy opcode inappropriate for copying a litteral

2008-05-10 Thread via RT
# New Ticket Created by Stephane Payrard # Please include the string: [perl #53956] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=53956 > The copy opcode is described as : =item B(inout PMC, invar PMC) Morphs the

[perl #45907] [TODO] Get rid of internal_exceptions ??

2008-05-10 Thread Allison Randal via RT
There will always be a few situations where it's not possible to throw a real exception (because there's no interpreter argument, or it's an error within the exception subsystem, etc.). So, we need to keep one simple fatal error sub around. I replaced 'internal_exception' with 'exit_fatal' in the p

Re: [perl #53890] [BUG] [PATCH] Ordered hash gc bug

2008-05-10 Thread NotFound
The attached patch makes explicit the assumptions about non-nullness in parrot_mark_hash and asserts them. -- Salu2 Index: src/hash.c === --- src/hash.c (revisión: 27411) +++ src/hash.c (copia de trabajo) @@ -299,6 +299,7 @@ =item

Re: [svn:parrot] r27357 - in branches/pdd25cx: compilers/imcc include/parrot src src/charset src/gc src/ops src/pmc t/pmc

2008-05-10 Thread Allison Randal
chromatic wrote: [...] These are the headerizer changes that bother me the most. Reverted in r27414. Allison