Re: [perl #40443] Separate vtable functions from methods (using :vtable)

2006-10-31 Thread Allison Randal
Leopold Toetsch wrote: We have basically the problem that classes are only constructed at runtime, which has 2 negative impacts: associating the vtable info with the class needs some helper storage like the props and namespaces can only be vaguely attached to the correct class at runtime too.

Re: [perl #40443] Separate vtable functions from methods (using :vtable)

2006-10-31 Thread Allison Randal
Larry Wall wrote: Indeed, that's part of why Perl 6 eventually threw out properties entirely, on the supposition that properties are simply attributes that are mixed in at run-time rather than compiled in. From an HLL perspective, I agree. But there's always more than one way to satisfy an HL

[perl #40635] osx build warning:

2006-10-31 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #40635] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40635 > config/gen/platform/darwin/dl.c: In function 'Parrot_dlsym': config/gen/platform/darwin/d

[perl #40634] leftover files...

2006-10-31 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #40634] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40634 > After a recent update, clean, build, test, I find: $ svk st ? runtime/parrot/library/P

Re: [perl #40632] [TODO] classify failing tests for next release

2006-10-31 Thread Will Coleda
I get most of these failures plus: t/compilers/imcc/syn/pcc.t 1 256211 4.76% 11 t/examples/library.t 1 256 41 25.00% 3 t/library/pcre.t 1 256 11 100.00% 1 t/library/pg.t 0 6430 0.

Re: PDD 25 "Concurrency" - first review

2006-10-31 Thread Larry Wall
On Mon, Oct 30, 2006 at 10:28:51PM -0800, Allison Randal wrote: : Oh, the Io language, which I've been interested in lately, also makes : use of the concept of "futures" for concurrency. It's got a degree of : appeal to it. Perl 6's feeds (lazy lists) can also be viewed as a form of futures, ins

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

2006-10-31 Thread audreyt
Author: audreyt Date: Tue Oct 31 13:52:03 2006 New Revision: 13358 Modified: doc/trunk/design/syn/S06.pod Log: * S06: Fix Hash example typo spotted by cognominal++ Modified: doc/trunk/design/syn/S06.pod == --- doc/tru

[perl #40632] [TODO] classify failing tests for next release

2006-10-31 Thread via RT
# New Ticket Created by Jerry Gay # Please include the string: [perl #40632] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40632 > currently failing tests (r15072, x86, msvc-7.1, perl-5.8.8) are: Failed Test

[perl #40631] [TODO] add tests for native PMC types

2006-10-31 Thread via RT
# New Ticket Created by Jerry Gay # Please include the string: [perl #40631] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40631 > the following test files, located in F, have one test each, verifying that they can be crea

Re: [perl #40443] Separate vtable functions from methods (using :vtable)

2006-10-31 Thread Larry Wall
On Mon, Oct 30, 2006 at 11:48:14PM -0800, Allison Randal wrote: : I suspect that originally it was expected that properties would only be : attached at runtime. But, since we have the option of flagging subs to : execute at various stages of compilation, it seems safe to assume that : properties

Re: [perl #40443] Separate vtable functions from methods (using :vtable)

2006-10-31 Thread Leopold Toetsch
Am Montag, 30. Oktober 2006 22:53 schrieb Jonathan Worthington: > Allison Randal wrote: > > Jonathan Worthington wrote: > >> I implemented this to test it out and it kinda worked. However, > >> properties don't get serialized so if you compile the program to a > >> PBC and run that it doesn't work.

[perl #40628] [TODO] Tcl - need to test reading something in t/cmd_gets.t

2006-10-31 Thread Paul Cochrane
# New Ticket Created by "Paul Cochrane" # Please include the string: [perl #40628] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40628 > Need to test actually reading something in, in languages/tcl/t/cmd_gets.t This ticke

Re: [perl #40627] [TODO] Tcl - test actual flushing in t/cmd_flush.t

2006-10-31 Thread Paul Cochrane
This patch adds the RT ticket number to the associated TODO item in languages/tcl/t/cmd_flush.t tcl_cmd_flush_t.patch Description: Binary data

[perl #40627] [TODO] Tcl - test actual flushing in t/cmd_flush.t

2006-10-31 Thread Paul Cochrane
# New Ticket Created by "Paul Cochrane" # Please include the string: [perl #40627] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40627 > Actual flushing needs to be tested in languages/tcl/t/cmd_flush.t This ticket is in

[perl #40626] [BUG] :vtable fails for subclasses of core classes

2006-10-31 Thread via RT
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #40626] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40626 > The new :vtable pragma doesn't seem to work when used on methods of subclasses of

Re: 'make rsync' failing - required anyway?

2006-10-31 Thread Paul Cochrane
This message didn't appear on the list, so am forwarding it on. Paul -- Forwarded message -- From: Nuno Carvalho <[EMAIL PROTECTED]> Date: Oct 31, 2006 11:27 AM Subject: Re: 'make rsync' failing - required anyway? To: Paul Cochrane <[EMAIL PROTECTED]> Hiya parrot people, On 10

STM runtime test hanging intermittently

2006-10-31 Thread Paul Cochrane
Hi all, I'm getting the t/stm/runtime.t test hanging only every-so-often. Is anyone else is noticing this problem? It hangs sometimes after the first test has run, and sometimes after the second test has run. In fact, I've managed to find out that if it eventually hangs after the first test, i

Re: [perl #40629] [TODO] Tcl - need to test classes in t/cmd_stringOld.t

2006-10-31 Thread Paul Cochrane
This patch adds the RT ticket number associated with the TODO item in languages/tcl/t/cmd_stringOld.t tcl_cmd_stringOld_t.patch Description: Binary data

Re: [perl #40628] [TODO] Tcl - need to test reading something in t/cmd_gets.t

2006-10-31 Thread Paul Cochrane
This patch adds the RT ticket number to the associated TODO item in languages/tcl/t/cmd_gets.t tcl_cmd_gets_t.patch Description: Binary data

[perl #40629] [TODO] Tcl - need to test classes in t/cmd_stringOld.t

2006-10-31 Thread Paul Cochrane
# New Ticket Created by "Paul Cochrane" # Please include the string: [perl #40629] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40629 > >From the file itself: "many of the classes are NOT tested here, and we rely on the c

[perl #40625] [BUG] website pointer to PDD25 is broken

2006-10-31 Thread via RT
# New Ticket Created by Jerry Gay # Please include the string: [perl #40625] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40625 > due to the name change in PDD25, the link on parrotcode.org is busted. 'docs/pdd/pdd25_th