Re: [perl #44171] [TODO] config/auto/attributes.pm: Write unit tests

2007-10-22 Thread jerry gay
On 10/22/07, James Keenan via RT <[EMAIL PROTECTED]> wrote: > On Mon Oct 22 18:16:51 2007, [EMAIL PROTECTED] wrote: > > > > i.e., Why we do we need this here when "\n" suffices everywhere else > > in > > > the Parrot distribution? > > > > I can't think of a reason. While you're at it, how about ge

Re: [perl #44171] [TODO] config/auto/attributes.pm: Write unit tests

2007-10-22 Thread Paul Cochrane
On 23/10/2007, James Keenan via RT <[EMAIL PROTECTED]> wrote: > While examining this file for the purpose of writing tests, I noticed > that it uses Perl's special variable $/ in 6 instances where a newline > would suffice. > > [parrot] 504 $ grep -n '$/' config/auto/attributes.pm > 54:print $/

Re: [perl #43331] [TODO] config/init/optimize.pm: Write unit tests

2007-10-22 Thread Paul Cochrane
On 23/10/2007, James Keenan via RT <[EMAIL PROTECTED]> wrote: > Am reopening this ticket to pose this question, which I also posed in RT > 44171: Why $/ where a newline would suffice: > > ./config//init/optimize.pm:41:print $/ if $verbose; Again, idiom copied from attributes.pm... If it's no

Re: [perl #46727] [TODO] config/auto/ctags.pm: Write unit tests

2007-10-22 Thread Paul Cochrane
On 23/10/2007, via RT James Keenan <[EMAIL PROTECTED]> wrote: > # New Ticket Created by James Keenan > # Please include the string: [perl #46727] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/rt3/Ticket/Display.html?id=46727 > > > > auto::ctags was

Re: [perl #46731] [BUG] Can't super vtable methods ?

2007-10-22 Thread Allison Randal
Will Coleda wrote: The short-term hack for accessing the low-level PMC within the object is to grab the proxy object for that parent: $P4 = getattribute $P3, ['String'], 'proxy' $P4 = 'urk' urk indeed. Yah, I wouldn't have gotten that from reading PDD15. It's not part of the spec, an

Re: Dynamic variable scoping

2007-10-22 Thread Allison Randal
If the problem is simply "implement Common Lisp special variables", then the most likely solution is to create a LispSpecialVar PMC. In the same way that a MultiSub acts like a sub but internally stores a list of subs, the LispSpecialVar would act like an ordinary variable to Parrot internals a

Re: [perl #46731] [BUG] Can't super vtable methods ?

2007-10-22 Thread Will Coleda
On Oct 22, 2007, at 11:26 PM, Allison Randal wrote: Will Coleda (via RT) wrote: $ ./parrot foo.pir Method 'set_string_native' not found current instr.: 'test' pc 20 (foo.pir:8) We wanted to do this in Tcl to simplify TclConst, but were unable to. Presumably it's just that it's a vtable we'r

Re: [perl #46731] [BUG] Can't super vtable methods ?

2007-10-22 Thread Allison Randal
Will Coleda (via RT) wrote: $ ./parrot foo.pir Method 'set_string_native' not found current instr.: 'test' pc 20 (foo.pir:8) We wanted to do this in Tcl to simplify TclConst, but were unable to. Presumably it's just that it's a vtable we're trying to super, not a method... The problem here

[perl #46731] [BUG] Can't super vtable methods ?

2007-10-22 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #46731] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46731 > $ cat foo.pir .sub test :main $P1 = get_class 'String' $P2 = subclass $P1, 'Goofy'

new object model status

2007-10-22 Thread Allison Randal
I've spent several days tracking down the final 3 failing tests from the new object model. The tests are in the threads and STM subsystems, which are both partial prototypes and not even fully specified. By the law of diminishing returns, the fact that those subsystems are coming up for a full

Re: Dynamic variable scoping

2007-10-22 Thread Allison Randal
Bob Rogers wrote: In what seems to have become an autumn tradition in the Parrot community, I am about to make my third annual attempt to implement Parrot support for what Common Lisp calls "special variable binding." [...] FWIW, I am (re-)starting this project a few weeks earlier than I

[perl #44171] [TODO] config/auto/attributes.pm: Write unit tests

2007-10-22 Thread James Keenan via RT
On Mon Oct 22 18:16:51 2007, [EMAIL PROTECTED] wrote: > > i.e., Why we do we need this here when "\n" suffices everywhere else > in > > the Parrot distribution? > > I can't think of a reason. While you're at it, how about getting rid > of the > use of 'and' for flow control here by turning them

Re: [perl #44171] [TODO] config/auto/attributes.pm: Write unit tests

2007-10-22 Thread chromatic
On Monday 22 October 2007 18:01:27 James Keenan via RT wrote: > While examining this file for the purpose of writing tests, I noticed > that it uses Perl's special variable $/ in 6 instances where a newline > would suffice. > > [parrot] 504 $ grep -n '$/' config/auto/attributes.pm > 54:print $

Re: [perl #44171] [TODO] config/auto/attributes.pm: Write unit tests

2007-10-22 Thread Will Coleda
No reason I can see, other than golf. On Oct 22, 2007, at 9:01 PM, James Keenan via RT wrote: While examining this file for the purpose of writing tests, I noticed that it uses Perl's special variable $/ in 6 instances where a newline would suffice. [parrot] 504 $ grep -n '$/' config/auto/attr

[perl #43341] [TODO] config/inter/progs.pm: Write unit tests

2007-10-22 Thread James Keenan via RT
Reopening this ticket to pose same question as in 44171: Why $/ where a newline would suffice? ./config//inter/progs.pm:39:print $/ if $verbose;

[perl #43331] [TODO] config/init/optimize.pm: Write unit tests

2007-10-22 Thread James Keenan via RT
Am reopening this ticket to pose this question, which I also posed in RT 44171: Why $/ where a newline would suffice: ./config//init/optimize.pm:41:print $/ if $verbose;

[perl #46727] [TODO] config/auto/ctags.pm: Write unit tests

2007-10-22 Thread via RT
# New Ticket Created by James Keenan # Please include the string: [perl #46727] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46727 > auto::ctags was prepared by ptc and we committed it to trunk over the weekend. For th

[perl #44171] [TODO] config/auto/attributes.pm: Write unit tests

2007-10-22 Thread James Keenan via RT
While examining this file for the purpose of writing tests, I noticed that it uses Perl's special variable $/ in 6 instances where a newline would suffice. [parrot] 504 $ grep -n '$/' config/auto/attributes.pm 54:print $/ if $verbose; 67:$verbose and print "trying attribute '$attr'$/"; 83

Re: [perl #46711] [TODO] add RSS/Atom feed information to webpage about Parrot mailing lists

2007-10-22 Thread Will Coleda
On Oct 22, 2007, at 3:25 PM, Allison Randal (via RT) wrote: # New Ticket Created by Allison Randal # Please include the string: [perl #46711] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46711 > Add a link to this page:

[svn:perl6-synopsis] r14466 - doc/trunk/design/syn

2007-10-22 Thread larry
Author: larry Date: Mon Oct 22 15:31:16 2007 New Revision: 14466 Modified: doc/trunk/design/syn/S05.pod Log: Scanning behavior of method regex forms unrelated to :ratchet notes PerlJam++ Modified: doc/trunk/design/syn/S05.pod ==

adding failing tests (was "t/pmc/objects.t test failures" in RT)

2007-10-22 Thread Allison Randal
Bernhard Schmalhofer wrote: I added this failing, as the test '1 equals 1' in languages/lisp/t/arithmetics.t started failing after the merge. Investigating that failure, I found that I could reproduce the problem with a simple PIR test case. This is what I added in t/pmc/objects.t. So it's a te

[perl #46697] [TODO] [C] Move the exception macros from src/pmc/coroutine.pmc into exceptions.h

2007-10-22 Thread Bob Rogers
From: Paul Cochrane (via RT) <[EMAIL PROTECTED]> Date: Mon, 22 Oct 2007 10:43:32 -0700 # New Ticket Created by Paul Cochrane # Please include the string: [perl #46697] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display

[perl #46711] [TODO] add RSS/Atom feed information to webpage about Parrot mailing lists

2007-10-22 Thread via RT
# New Ticket Created by Allison Randal # Please include the string: [perl #46711] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46711 > Add a link to this page:

[perl #46541] [BUG] t/pmc/objects.t test failures

2007-10-22 Thread Allison Randal via RT
Underlying code issue resolved in r22405. The MMD methods were directly poking into the union value of "Integer", which doesn't work when the multi-method is being called as the closest match for a subclass of Integer.

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

2007-10-22 Thread kjs
Author: kjs Date: Mon Oct 22 13:43:08 2007 New Revision: 22404 Modified: trunk/docs/pdds/draft/pdd19_pir.pod Log: pdd19_pir.pod: o add macro stuff I sent to list earlier, as requested by Allison. Modified: trunk/docs/pdds/draft/pdd19_pir.pod ===

[perl #46715] [IMCC] .namespace: sliced indexes deprecated

2007-10-22 Thread via RT
# New Ticket Created by Klaas-Jan Stol # Please include the string: [perl #46715] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46715 > IMCC currently allows for writing: .namespace ["a" .. "b"] This does not make sense,

Re: [PIR] Macros: features?

2007-10-22 Thread Allison Randal
Klaas-Jan Stol wrote: Hi, Last few days i've been working on a complete reimplementation of IMCC's grammar. It can be found in compilers/pirc/new. THere's no Makefile yet, as I didn't know how to create this in a portable way (as flex and bison are needed). No tests yet either, I only do that wi

Re: [PIR] Macros: features?

2007-10-22 Thread Klaas-Jan Stol
On 10/22/07, Allison Randal <[EMAIL PROTECTED]> wrote: > > Klaas-Jan Stol wrote: > > Hi, > > > > Last few days i've been working on a complete reimplementation of IMCC's > > grammar. It can be found in compilers/pirc/new. THere's no Makefile yet, > as > > I didn't know how to create this in a porta

Re: [PIR] Macro layer: an overview document

2007-10-22 Thread Allison Randal
Klaas-Jan Stol wrote: Hi, attached a document describing the current macro layer of IMCC. It describes the current situation and some proposals for improvement. Thanks! Go ahead and roll this into PDD 19 under a "Macros" section. Allison

[PIR] Macro layer: an overview document

2007-10-22 Thread Klaas-Jan Stol
Hi, attached a document describing the current macro layer of IMCC. It describes the current situation and some proposals for improvement. Comments are most welcome, thanks. kjs macropdd.pod Description: Binary data

[perl #46703] [TODO] [C] Fix ref_count handling for exception_handlers

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46703] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46703 > In src/pmc/exception_handler.pmc there is the todo item: * can't reuse Continuati

[perl #46701] [TODO] [C] Call the appropriate default method in instantiate()

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46701] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46701 > In src/pmc/delegate.pmc:instantiate() there is the todo item: Calls the delegated C<__

[perl #46699] [TODO] [C] Factor out common code with Sub.invoke and inherit it

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46699] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46699 > In src/pmc/coroutine.pmc:invoke() there is the todo item: /* TODO factor out common co

[perl #46697] [TODO] [C] Move the exception macros from src/pmc/coroutine.pmc into exceptions.h

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46697] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46697 > In src/pmc/coroutine.pmc there is the todo item: /* XXX put these into exceptions.h */

Re: [perl #46601] PIO May Need to Mark PObjs

2007-10-22 Thread Allison Randal
chromatic (via RT) wrote: However, it does mean that if we keep up this line of thinking, we do need a way to identify ParrotIOLayers that hold PObj pointers and mark those pointers during DOD. ParrotIOLayers are going away, to be replaced by a class and C-level roles. It does bring up a go

Re: [perl #46649] [TODO] [C] Comparing Hash and PerlHash should probably be possible

2007-10-22 Thread chromatic
On Monday 22 October 2007 07:01:05 Paul Cochrane wrote: > In src/pmc/hash.pmc: is_equal() there is the todo item: > > /* TODO: comparing Hash and PerlHash should probably be possible */ > > This needs implementing PerlHash is gone, so this is unnecessary. -- c

Re: [perl #46625] [PATCH] config/auto/backtrace.pm: Eliminate one variable

2007-10-22 Thread chromatic
On Monday 22 October 2007 05:19:34 James Keenan wrote: > The patch attached tightens up the code a bit in config/auto/ > backtrace.pm. > > I'll apply in 2-3 days if there is no objection. +1; apply away. -- c

[perl #46691] [TODO] [C] Should the shift_pmc() method be silently ignored?

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46691] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46691 > In src/pmc/exception.pmc:shift_pmc() there is the todo item: PMC *shift_pmc() {

[perl #46689] [TODO] [C] Check parents when comparing an Exception object with itSELF

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46689] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46689 > In src/pmc/exception.pmc:is_equal() there is the todo item (embedded in its code):

[perl #46687] [TODO] [C] Correct destruction of PackFile objects

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46687] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46687 > In src/pmc/eval.pmc:thaw() there is the todo item (with some context): /*

Re: Calling Class Methods...

2007-10-22 Thread Allison Randal
Will Coleda wrote: Now I get "Method 'slurp' not found" but if I change getclass to 'new', then it ... well, it gets further. Is this because: 1) the syntax for class/static methods changed? 2) slurp was modified to no longer be static? 3) we can't do static anymore? In any case, the perldoc

[perl #46685] [TODO] [C] Create a PackFile API and move code from destroy() there

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46685] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46685 > In src/pmc/eval.pmc:destroy() there is the todo item: /* TODO create PF API, move it t

[perl #46683] [TODO] [C] Walk the fixups, locate globals and nullify the Sub PMC

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46683] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46683 > In src/pmc/eval.pmc:destroy() there is the todo item: * These globals still ex

[perl #46659] [TODO] [C] Remove quick hack code from check_set_std_props()?

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46659] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46659 > In src/pmc/default.pmc:check_set_std_props() there is the todo item: /* XXX *

[perl #46681] [TODO] [C] Use strerror_r instead of strerror

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46681] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46681 > In src/pmc/file.pmc there is the todo item: /* XXX apparently, strerror_r is thread-sa

[perl #46679] [TODO] [C] Check if we need to deallocate strerror strings

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46679] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46679 > In src/pmc/file.pmc there is the todo item: /* XXX Check if we need to deallocate stre

[perl #46677] [TODO] [C] Merge fixedbooleanarray.pmc with functions from BigInt PMC

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46677] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46677 > In src/pmc/fixedbooleanarray.pmc there is the todo item; * TODO merge this with functi

[perl #46675] [TODO] [C] Autovivify an Array and insert it in SELF

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46675] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46675 > In src/pmc/fixedpmcarray.pmc:set_number_keyed() there is the todo item: /* TODO: autov

[perl #46673] [TODO] [C] get_repr() should use freeze/thaw

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46673] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46673 > In src/pmc/fixedpmcarray.pmc:get_repr() there is the todo item: =item C Returns a str

[perl #46671] [TODO] [C] Handle bound user functions in get_attr_str()

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46671] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46671 > In src/pmc/default.pmc:get_attr_str() there is the todo item: /* TODO bound user funct

[perl #46669] [TODO] [C] Throw an AttributeError if a PMC is NULL in get_attr_str()

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46669] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46669 > In src/pmc/default.pmc:get_attr_str() there is the todo item: if (PMC_IS_NULL(

[perl #46667] [TODO] [C] Do we need properties in the default object system?

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46667] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46667 > In src/pmc/default.pmc:get_attr_str() there is the todo item: /* let's look for props

[perl #46665] [TODO] [C] Walk the Method Resolution Order (MRO) in src/pmc/defaults.pmc

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46665] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46665 > in src/pmc/default.pmc there is the todo item in isa_pmc() and isa(): /* TODO FIXME -

[perl #46663] [TODO] [C] Is call to set_pmc_keyed_str() too late for --gc-debug in setprop()?

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46663] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46663 > In src/pmc/default.pmc:setprop() there is the todo item: /* XXX is this to

[perl #46661] [TODO] [C] Warn when morph to normal or readonly class fails

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46661] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46661 > In src/pmc/default.pmc:check_set_std_props() there is the todo item: /* morph to Const

Re: [perl #44861] [TODO]: remove compiler warnings note from README

2007-10-22 Thread Patrick R. Michaud
On Sun, Oct 21, 2007 at 07:57:24PM -0700, Will Coleda via RT wrote: > On Wed Aug 22 09:19:49 2007, pmichaud wrote: > > For the 0.4.15 release a note was added to README regarding the > > large number of compiler warnings in the release: > > > > + As of the 0.4.15 release you may see a large number

[perl #46653] [TODO] [C] Create hash with needed size at initialisation

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46653] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46653 > In src/pmc/hash.pmc:thaw() there is the todo item: * TODO create hash with needed size

[perl #46651] [TODO] [C] Make a better interface for hash creation

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46651] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46651 > In src/pmc/hash.pmc:thaw() there is the todo item: /* TODO make a better interface for

[perl #46649] [TODO] [C] Comparing Hash and PerlHash should probably be possible

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46649] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46649 > In src/pmc/hash.pmc: is_equal() there is the todo item: /* TODO: comparing Hash and Pe

[perl #46647] [TODO] [C] Possibly more code needs to return an empty STRING when no key found in hash

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46647] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46647 > In src/pmc/hash.pmc there is the todo item: /* * TODO current behaviour of $S0 = hsh[

[perl #46643] [TODO] [C] Use freeze in get_repr() (for hashes)

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46643] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46643 > In src/pmc/hash.pmc:get_repr() there is the todo item: /* TODO use freeze */ When one

[perl #46641] [TODO] [C] PMCs extending Hash should probably register themselves

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46641] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46641 > In src/pmc/hash.pmc there is the todo item: TODO: PMCs extending Hash should probably

Parrot Bug Summary

2007-10-22 Thread Parrot Bug Summary
Parrot Bug Summary http://rt.perl.org/rt3/NoAuth/parrot/Overview.html Generated at Mon Oct 22 13:00:02 2007 GMT --- * Numbers * New Issues * Overview of Open Issues * Ticket Status By Version * Requestors with m

[perl #46635] [TODO] [C] Check overflow for -maxint in absolute()

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46635] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46635 > In src/pmc/integer.pmc:absolute() there is the todo item: /* XXX overlflow for -maxint

[perl #46633] [TODO] [C] Check for overflow when incrementing or decrementing integers

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46633] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46633 > In src/pmc/integer.pmc there are todo items under the increment() and decrement() metho

[perl #46631] [TODO] [C] Implement Complex and BigInt RHS values for the pow() functions

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46631] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46631 > In src/pmc/integer.pmc there is the todo item: TODO Complex and BigInt rhs This appli

[perl #46629] [TODO] [C] Implement multiplication of integers with complex numbers

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46629] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46629 > In src/pmc/integer.pmc:multiply() there is the todo item: "TODO mul" This means that

[perl #46627] [TODO] [C] Check for exact Integer type in add()

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46627] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46627 > In src/pmc/integer.pmc:add() there is the todo item: * TODO * check for exact In

[perl #46625] [PATCH] config/auto/backtrace.pm: Eliminate one variable

2007-10-22 Thread via RT
# New Ticket Created by James Keenan # Please include the string: [perl #46625] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46625 > The patch attached tightens up the code a bit in config/auto/ backtrace.pm. I'll apply

[perl #46623] [TODO] [C] Check for bigint overflow in new_from_string()

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46623] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46623 > In src/pmc/integer.pmc:new_from_string() there is the todo item: /* TODO bigint overfl

[perl #46621] [TODO] [C] Preserve type system in overflow()

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46621] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46621 > In src/pmc/integer.pmc:overflow() there is the todo item: /* TODO preserve type system

[perl #46619] [TODO] [C/Perl] Create MMD headers in Pmc2c.pm

2007-10-22 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46619] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46619 > In src/pmc/integer.pmc there is the todo item (with some context): /* XXX create MMD h