parrotsketch

2007-12-04 Thread Will Coleda
Reminder, parrotsketch is today at the usual time; lurkers welcome. Anyone using their commit bits should consider presenting a report on their status. From http://www.parrotcode.org/misc/parrotsketch.html : This meeting currently occurs each Tuesday at 18:30 UTC, in the #parrotsketch

[perl #48108] [BUG] downcase opcode fails on unicode strings w/o icu

2007-12-04 Thread via RT
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #48108] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48108 If ICU isn't present, Parrot's Cdowncase opcode always throws an exception.

[perl #48112] [BUG] cloning a hash also clones its values

2007-12-04 Thread via RT
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #48112] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48112 Cloning a Hash also causes its values to be cloned. Perhaps this is the

Re: [perl #47011] [DEPRECATED] VTABLE entry 'new_from_string'

2007-12-04 Thread Allison Randal
Kevin Tew wrote: The logic was present in FIA, before PCC was written. It was reused in an attempt to don't repeat yourself. Probably would be better as a literal key than a string that has to be parsed. Allison

Re: [perl #47011] [DEPRECATED] VTABLE entry 'new_from_string'

2007-12-04 Thread Allison Randal
Francois PERRAD wrote: 'new_from_string' is widely used by .const, for example : .const .String key_print = print That's the one case I consider a valid use of 'new_from_string', actually creating a string constant during initialization. Other hackery has been piled on top of the

[perl #47924] [BUG] test failures in t/oo/mro-c3.t

2007-12-04 Thread Allison Randal via RT
Resolved in r23461.

[perl #47890] [BUG] t/oo not part of 'make test'

2007-12-04 Thread Patrick R. Michaud via RT
Resolved in r23462. Pm

[perl #48112] [BUG] cloning a hash also clones its values

2007-12-04 Thread Patrick R. Michaud via RT
On Tue Dec 04 08:40:12 2007, pmichaud wrote: Cloning a Hash also causes its values to be cloned. Perhaps this is the desired behavior, but if so, it's inconsistent with cloning other aggregates. After thinking about it a bit more, I'm not sure I want Hash's behavior with clone to change --

[perl #48118] [PATCH] Replace additional instances of '$/'

2007-12-04 Thread via RT
# New Ticket Created by James Keenan # Please include the string: [perl #48118] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48118 The patch replaces Perl special variable $/ with \n in 8 locations in modules

[perl #45479] [CAGE] config/gen/PodText.pm: Find better location

2007-12-04 Thread James Keenan via RT
No one has spoken up for retaining this module in the distribution. I searched anew for references to it and found them only in the MANIFEST and the file itself. We have other means of generating plain-text documentation. I therefore recommend deleting the file from trunk. Index: MANIFEST

[perl #45479] [CAGE] config/gen/PodText.pm: Find better location

2007-12-04 Thread Will Coleda via RT
On Tue Dec 04 13:00:10 2007, [EMAIL PROTECTED] wrote: No one has spoken up for retaining this module in the distribution. I searched anew for references to it and found them only in the MANIFEST and the file itself. We have other means of generating plain-text documentation. I therefore

[perl #48120] [TODO] [C] Remove nonportable signbit code from perlnum.pmc

2007-12-04 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #48120] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48120 In languages/perl5/src/pmc/perlnum.pmc:get_string() there is the todo item: /*

[perl #48122] [TODO] [C] PerlInt should extend PerlAny or PerlScalar in perlint.pmc (?)

2007-12-04 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #48122] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48122 In languages/perl5/src/pmc/perlint.pmc there is the todo item: /* TODO extends

[perl #48124] [TODO] [C] Fix arithmetic ops in perlarray.pmc

2007-12-04 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #48124] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48124 In languages/perl5/src/pmc/perlarray.pmc there is the todo item: Fix the

[perl #48128] [TODO] [dotnet] Does a null first byte need special handling in dotnetsignature.pmc?

2007-12-04 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #48128] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48128 In languages/dotnet/pmc/dotnetsignature.pmc:read_compressed() there is the todo

[perl #48130] [TODO] [dotnet] Why does sig_token have to be set to 0xFFFF in make_bytecde_pmc()?

2007-12-04 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #48130] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48130 In languages/dotnet/pmc/dotnetassembly.pmc:make_bytecode_pmc() there is the todo

[perl #48132] [TODO] [cardinal] Need to throw an exception about invalid boolean type in get_bool()

2007-12-04 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #48132] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48132 In languages/cardinal/src/pmc/rubystring.pmc:get_bool() there is the todo item:

PGE Multiple grammar associations

2007-12-04 Thread istarex
Is it possible to compile a single PGE grammar against multiple sets of actions to get multiple different parsers? This would be good for Lisp-like languages where you have one parser that spits out PIR code and a parser that is invoked for (read) calls and spits out s-expression objects. Both

Re: PGE Multiple grammar associations

2007-12-04 Thread Patrick R. Michaud
On Tue, Dec 04, 2007 at 12:54:43PM -0500, istarex wrote: Is it possible to compile a single PGE grammar against multiple sets of actions to get multiple different parsers? This would be good for Lisp-like languages where you have one parser that spits out PIR code and a parser that is invoked

[perl #45479] [CAGE] config/gen/PodText.pm: Find better location

2007-12-04 Thread James Keenan via RT
On Tue Dec 04 13:04:05 2007, coke wrote: If there are no references to it anywhere, +1; we have more than enough desirable items in the repository, and no need to cling to relics. [parrot] 504 $ fns . | xargs grep -l PodText ./config/gen/PodText.pm ./MANIFEST

[perl #48134] [BUG][PATCH]interp-current_args overwritten in callmethodcc

2007-12-04 Thread Mehmet Yavuz Selim Soyturk
# New Ticket Created by Mehmet Yavuz Selim Soyturk # Please include the string: [perl #48134] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48134 Next code segfaults because callmethodcc does another method call,

[perl #48138] [BUG] t/native_pbc/integer.t, t/native_pbc/number.t fail on Darwin

2007-12-04 Thread via RT
# New Ticket Created by James Keenan # Please include the string: [perl #48138] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48138 In the course of preparing the patch submitted in r23472 to config/ auto/pmc.pm

[perl #48138] [BUG] t/native_pbc/integer.t, t/native_pbc/number.t fail on Darwin

2007-12-04 Thread James Keenan via RT
I note that the same two tests are failing in this smoke report today from FreeBSD: http://tinyurl.com/2cb7c9

[perl #48142] [DEPRECATED] class_type vtable

2007-12-04 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #48142] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48142 From PDD17: =item class_type INTVAL class_type(INTERP, PMC* self) Return the

[perl #48144] [DEPRECATED] pmc_namespace vtable

2007-12-04 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #48144] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48144 From PDD17: =item pmc_namespace [deprecated] PMC* pmc_namespace(INTERP, PMC*

[svn:parrot-pdd] r23476 - in trunk: . docs/pdds

2007-12-04 Thread coke
Author: coke Date: Tue Dec 4 21:02:17 2007 New Revision: 23476 Modified: trunk/docs/pdds/pdd17_pmc.pod Changes in other areas also in this revision: Modified: trunk/DEPRECATED.pod Log: [docs] open tickets for deprecated items in pdd17; note them in DEPRECATED also. Modified:

[perl #48150] [BUG] pdd23 doesn't document obtaining thrown exception object

2007-12-04 Thread via RT
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #48150] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48150 PDD23 doesn't provide much information about how an exception handler gets

[perl #48152] [TODO] document (pdd19) or deprecate .get_results directive

2007-12-04 Thread via RT
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #48152] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48152 Many exception handlers in the repository use a .get_results directive to