Re: Value PMCs in Parrot?

2006-04-12 Thread Leopold Toetsch
On Apr 11, 2006, at 19:03, Chip Salzenberg wrote: 1. "Value Model" for value objects which is why saying 'stick with [ISNP]' is synonymous with 'no value types' [of that nature]. Ack. That's certainly an optimization thingy (e.g. native 'complex' type ...) and not targeted no

[perl #38907] namespace-related bus error

2006-04-12 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #38907] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=38907 > The following code makes parrot bus error: .sub foo .include 'interpinfo.pasm' $P

Re: [perl #38903] Tcl - namespace borkage

2006-04-12 Thread Leopold Toetsch
On Apr 12, 2006, at 18:00, Will Coleda (via RT) wrote: Tcl uses globals in the '_Tcl' namespace to hold information about the interpreter. But now: find_global '_Tcl', 'foo doesn't work, because it's relative to the current namespace, which is usually Tcl. s/usually Tcl/usually tcl/ # i.e.

[svn:parrot-pdd] r12190 - trunk/docs/pdds

2006-04-12 Thread particle
Author: particle Date: Wed Apr 12 10:48:10 2006 New Revision: 12190 Modified: trunk/docs/pdds/pdd21_namespaces.pod Log: [PDD21] modify doc to match current code behavior ~ define HLL Root Namespace ~ modify HLL User-Created Namespace definition ~ namespaces passed to "{find,store}_global" ops

Parrot_init shouldn't be described in doc/embed.pod

2006-04-12 Thread Pawel Murias
Hi, Calling Parrot_init explicitly on a Parrot_Interp returned by Parrot_new is useless. (Parrot_new does it itself and Parrot_init doesn't do anything on already initiated interpreters) Because it makes the api more complicated i propose to remove it from the docs. I attach a patch which remov

[svn:parrot-pdd] r12189 - trunk/docs/pdds

2006-04-12 Thread particle
Author: particle Date: Wed Apr 12 09:41:22 2006 New Revision: 12189 Modified: trunk/docs/pdds/pdd21_namespaces.pod Log: [PDD21] ~ namespaces passed to "{find,store}_global" ops are relative to HLL namespace Modified: trunk/docs/pdds/pdd21_namespaces.pod ===

[perl #38903] Tcl - namespace borkage

2006-04-12 Thread Will Coleda via RT
The current top level namespaces are 'Tcl' and '_Tcl'. According to PDD21, this should be "tcl" and "_tcl".

[perl #38903] Tcl - namespace borkage

2006-04-12 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #38903] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=38903 > Tcl uses globals in the '_Tcl' namespace to hold information about the interpreter. Bu

Re: [perl #38888] PGE::P5Regexp failures.

2006-04-12 Thread Leopold Toetsch
Patrick R. Michaud wrote: I'm now thinking that the problem has to be either in load_bytecode or in the .pbc file itself (PGE.pbc). [ ... ] Lastly, to really indicate that the problem seems to be in ".pbc" handling somewhere -- try changing line 91 of languages/tcl/src/templates/tcllib.tem

Re: [svn:parrot] r12129 - trunk/src

2006-04-12 Thread Leopold Toetsch
Nicholas Clark wrote: ./src/library.c:*prefix_str = CONST_STRING(interpreter, pwd); I've fixed that one now and the code in c2str.pl verifies that it gets exactly two quote chars. Nicholas Clark leo