[perl #63626] Re: bouncing parrot...@parrotcode.org

2009-03-04 Thread via RT
# New Ticket Created by Ask Bjoern Hansen # Please include the string: [perl #63626] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63626 On Mar 3, 2009, at 13:36, Allison Randal wrote: Looks like Robert just did

[perl #63630] testing

2009-03-04 Thread via RT
# New Ticket Created by Allison Randal # Please include the string: [perl #63630] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63630 testing

[perl #63632] Re: bouncing parrot...@parrotcode.org

2009-03-04 Thread via RT
# New Ticket Created by Allison Randal # Please include the string: [perl #63632] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63632 Ah, excellent! Um, maybe not quite yet? I just created:

[perl #63634] [BUG] repeated take($x) all get the same value

2009-03-04 Thread abhijit mahabal
# New Ticket Created by abhijit mahabal # Please include the string: [perl #63634] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63634 ecode my @y = gather { my $x = 0; for 1..5 { $x++; take

[perl #63642] ,= works but doesn't DTRT in Rakudo

2009-03-04 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #63642] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63642 Abusing git commit a2f506 of Rakudo along with r37108 of Parrot, I get this: $ perl6

r25684 - docs/Perl6/Spec

2009-03-04 Thread pugs-commits
Author: lwall Date: 2009-03-04 17:27:17 +0100 (Wed, 04 Mar 2009) New Revision: 25684 Modified: docs/Perl6/Spec/S03-operators.pod docs/Perl6/Spec/S12-objects.pod Log: [S03] deprecate TOP in favor of .parse and .parsefile [S12] mention restriction on calling class metamethods when there isn't

rakudo.org web site

2009-03-04 Thread Patrick R. Michaud
We're now putting together a revamped rakudo.org website that we plan to be _the_ central location for information about Rakudo Perl, and a lot of useful information about Perl 6 as well. We're looking for people to contribute content and update pages -- see the How to help page at

[perl #63644] Rakudo parses $var++ ++ when it probably shouldn't

2009-03-04 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #63644] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63644 Matt-W pmichaud++ ++ ++ masak rakudo: my $a = 0; $a++ ++; say $a p6eval rakudo

perl6-projects. org (was: Re: rakudo.org web site)

2009-03-04 Thread Moritz Lenz
Hi, Patrick R. Michaud wrote: We're now putting together a revamped rakudo.org website that we plan to be _the_ central location for information about Rakudo Perl, and a lot of useful information about Perl 6 as well. Speaking of which, I plan to make perl6-projects.org *the* central

r25685 - docs/Perl6/Spec

2009-03-04 Thread pugs-commits
Author: lwall Date: 2009-03-04 20:20:59 +0100 (Wed, 04 Mar 2009) New Revision: 25685 Modified: docs/Perl6/Spec/S02-bits.pod docs/Perl6/Spec/S03-operators.pod docs/Perl6/Spec/S04-control.pod docs/Perl6/Spec/S05-regex.pod docs/Perl6/Spec/S06-routines.pod

r25693 - docs/Perl6/Spec

2009-03-04 Thread pugs-commits
Author: lwall Date: 2009-03-04 23:30:37 +0100 (Wed, 04 Mar 2009) New Revision: 25693 Modified: docs/Perl6/Spec/S12-objects.pod Log: clarify enum vs sub for moritz++ Modified: docs/Perl6/Spec/S12-objects.pod === ---

r25695 - docs/Perl6/Spec

2009-03-04 Thread pugs-commits
Author: lwall Date: 2009-03-05 00:06:26 +0100 (Thu, 05 Mar 2009) New Revision: 25695 Modified: docs/Perl6/Spec/S02-bits.pod docs/Perl6/Spec/S03-operators.pod docs/Perl6/Spec/S05-regex.pod Log: tweak result object from {''} into {'?'} Modified: docs/Perl6/Spec/S02-bits.pod

Rakudo newbies

2009-03-04 Thread Timothy S. Nelson
Hi all. I've been hanging around on #perl6, and have heard a fairly regular complaint in the last few days. 3 or 4 people have turned up wanting to work on Rakudo, and not always been able to get the information that they wanted. I promised to write a message to the list complaining about

Re: Rakudo newbies

2009-03-04 Thread Andy Lester
The basic plan is to turn rakudo.org into a centralised rakudo info point. The plan is that all the information needed to be a developer will appear on it. If you want to help in the process, ask for some rakudo.org editing power on #perl6, and go to work on the docs. This new site is

Re: Fwd: More S29/S32 Masak ideas (fwd)

2009-03-04 Thread Timothy S. Nelson
Sorry, forgot to send this to the list. -- Forwarded message -- Date: Wed, 4 Mar 2009 17:16:22 +1100 (EST) From: Timothy S. Nelson wayl...@wayland.id.au To: Carl Mäsak cma...@gmail.com Subject: Re: Fwd: More S29/S32 Masak ideas On Tue, 3 Mar 2009, Carl Mäsak wrote: #  

Re: Fwd: More S29/S32 Masak ideas

2009-03-04 Thread Timothy S. Nelson
On Wed, 4 Mar 2009, Timothy S. Nelson wrote: # Method descriptor objects: .name, .signature, .as, .multi, .do.        In Callable.pod        .name is on Routine        .signature is on Code        .do is on Code (I'm guessing here)        I'm not sure where the others go: .multi must be on

[perl #63646] Null PMC access trying to use name in nonexistent namespace

2009-03-04 Thread via RT
# New Ticket Created by Matthew Walton # Please include the string: [perl #63646] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63646 20:12 Matt-W rakudo: sub foo { EN::a; }; say alive; foo; 20:12 p6eval rakudo

[perl #63650] Conflicting sub names and enum values

2009-03-04 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #63650] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=63650 Pugs r25693 contains clarification on what should happen when a short name of an

Re: [perl #63626] Re: bouncing parrot...@parrotcode.org

2009-03-04 Thread Geoffrey Broadwell
Could you change parrot...@parrotcode.org to simply bounce with a message: -- Please submit reports to Parrot using the web interface: https://trac.parrot.org/parrot/newticket Thanks, The Parrot Team -- Thanks! Allison Out of curiosity, why don't we allow

Re: [perl #63626] Re: bouncing parrot...@parrotcode.org

2009-03-04 Thread Mark Glines
Geoffrey Broadwell wrote: Out of curiosity, why don't we allow emails to create tickets in Trac? There's a plugin to do this, called email2trac. It's being set up, but doesn't work yet. See TT #49. Mark

Re: [perl #63626] Re: bouncing parrot...@parrotcode.org

2009-03-04 Thread Chris Dolan
On Mar 4, 2009, at 10:58 PM, Geoffrey Broadwell wrote: Out of curiosity, why don't we allow emails to create tickets in Trac? -'f trac2email is still not fully functional. In the meantime, please continue to use the web interface. Once trac2email is fixed, you'll be able to open and

Re: Fwd: More S29/S32 Masak ideas

2009-03-04 Thread Carl Mäsak
Timothy (), Larry (]), Timothy (), Carl (), Timothy ():        I'm guessing that .^methods should really return a bunch of Method objects. No, MethodDescriptor objects. See S12:1987.        Hmm.  I don't like it :).  You may be right, but I was assuming that we were returning *Method*

r25698 - docs/Perl6/Spec/S32-setting-library

2009-03-04 Thread pugs-commits
Author: wayland Date: 2009-03-05 06:58:38 +0100 (Thu, 05 Mar 2009) New Revision: 25698 Modified: docs/Perl6/Spec/S32-setting-library/Any.pod docs/Perl6/Spec/S32-setting-library/Scalar.pod Log: - Moved defined and undefined from Scalar.pod to Any.pod, as per signature - Defined

r25699 - docs/Perl6/Spec

2009-03-04 Thread pugs-commits
Author: wayland Date: 2009-03-05 07:16:44 +0100 (Thu, 05 Mar 2009) New Revision: 25699 Modified: docs/Perl6/Spec/S02-bits.pod docs/Perl6/Spec/S28-special-names.pod Log: Changes to special variables as per $?OS changes discussion on mailing list. Haven't worried about compatibility for