[perl #60338] [BUG] NCI segfaults with null pcc_params_signature

2008-11-05 Thread via RT
# New Ticket Created by Jeff Horwitz # Please include the string: [perl #60338] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60338 changes in r32203 cause mod_parrot to segfault, as the param signature is an

Re: [perl #60178] Commit r32189 breaks Parrot on Mac OS X 10.5.4

2008-11-05 Thread Carl Mäsak
I pried r32189 apart to see which chunk of it breaks my compilation. The commit consists of two additions and one change. The two additions compile fine, but as soon as I make the change (attached), I can't compile. the-chunk.patch Description: Binary data

[perl #48016] [DEPRECATED] store_global opcode

2008-11-05 Thread Will Coleda via RT
On Sat Dec 01 14:29:03 2007, coke wrote: =item Bstore_global There are several variants of some of the above ops; all are deprecated, and are replaced by the ops {set,get}_[hll,root]_global. See also http://www.parrotcode.org/docs/ops/var.html. DEPRECATED.pod also says that the global

Re: Known Bug in Rakudo?

2008-11-05 Thread Patrick R. Michaud
On Thu, Oct 30, 2008 at 08:03:17AM -0700, Ovid wrote: This code: class Point { has $.x is rw; has $.y is rw; method get_string () { return $.x, $.y; } } my Point $point .= new( :x1.2, :y-3.7 ); say $point.x; say $point; Generates this