r26479 - docs/Perl6/Spec

2009-04-27 Thread pugs-commits
Author: szabgab Date: 2009-04-27 09:06:56 +0200 (Mon, 27 Apr 2009) New Revision: 26479 Modified: docs/Perl6/Spec/S14-roles-and-parametric-types.pod Log: dos2unix Modified: docs/Perl6/Spec/S14-roles-and-parametric-types.pod ===

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

2009-04-27 Thread pugs-commits
Author: wollmers Date: 2009-04-27 09:51:37 +0200 (Mon, 27 Apr 2009) New Revision: 26481 Modified: docs/Perl6/Spec/S32-setting-library/Str.pod Log: typo Modified: docs/Perl6/Spec/S32-setting-library/Str.pod === ---

Interpolation of \c[$charname]?

2009-04-27 Thread Helmut Wollmersdorfer
It's not explicitly specified, if a something like my $charname = 'SPACE'; my $string = \c[$charname]; should interpolate or not. I assume 'not'. Right? Helmut Wollmersdorfer

Whitespace in \c[...], \x[...], etc.

2009-04-27 Thread Helmut Wollmersdorfer
It's not explicitly specified, if insignificant whitespace is allowed in \c[...], \x[...], etc. Std.pm allows e.g. \x[ 41 , 42 , 43 ] For convenience - especially with long charnames - it should be possible to write \c[ SPACE, # blafasel LATIN SMALL LETTER

.to_charnames() and .from_charnames()

2009-04-27 Thread Helmut Wollmersdorfer
IMHO something like the Perl 5 charnames::viacode(ord($char)); charnames::vianame($charname); is needed in Perl 6. Use cases: - test - diagnosis - manipulation on charname-level (e.g. get base character of LATIN CAPITAL LETTER L WITH STROKE, which has no de-composition) To be defined

[perl #65132] Rakudo still parses 'int time', STD.pm doesn't

2009-04-27 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #65132] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=65132 masak std: int time p6eval std 26432: OUTPUT«# PARSE FAILED #␤Syntax error

[perl #65128] Cannot return empty typed List

2009-04-27 Thread Brian S. Julin
# New Ticket Created by Brian S. Julin # Please include the string: [perl #65128] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=65128 The following work as expected: my Num List sub f () { return (A) }; my Num

Re: How to use the sockets?

2009-04-27 Thread Carl Mäsak
Moritz (): I've gathered that Rakudo now implements sockets, and I wanted to do some basic data shuffling for testing purposes. Could anybody point me to a really simple, working example? I tried to cargo-cult it from Web.pm

[perl #60176] Rakudo fails on defining classes with core roles

2009-04-27 Thread Carl Mäsak via RT
On Tue Nov 04 09:05:10 2008, jn...@jnthn.net wrote: On Mon Oct 27 10:55:52 2008, masak wrote: Rakudo r32151 can't create classes with roles from the Rakudo-defined classes. $ ./perl6 -e 'role B {}; class A does B {}' # this works $ perl6 -e 'class A does Int {}' # this doesn't

How to use the sockets?

2009-04-27 Thread Moritz Lenz
Hi, I've gathered that Rakudo now implements sockets, and I wanted to do some basic data shuffling for testing purposes. Could anybody point me to a really simple, working example? I tried to cargo-cult it from Web.pm

[perl #65138] [PATCH] Foo::_foo() parsefails

2009-04-27 Thread via RT
# New Ticket Created by Geoffrey Broadwell # Please include the string: [perl #65138] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=65138 Rakudo doesn't parse Foo::_foo() properly, while Foo::foo() works fine.

[perl #65164] [TODO] Implement [^^]

2009-04-27 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #65164] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=65164 szabgab rakudo: say 1 ^^ 1 p6eval rakudo c4f676: OUTPUT«␤» szabgab rakudo: say 1 ^^ 1

[perl #65146] [PATCH] fixed typo

2009-04-27 Thread Tokuhiro Matsuno
# New Ticket Created by Tokuhiro Matsuno # Please include the string: [perl #65146] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=65146 --- README |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff

[perl #65006] mingw32-make realclean doesn't clean everything

2009-04-27 Thread webmas...@cosmicperl.com via RT
Infinoid helped me track the problem down to * being escaped on some of the directories for the cleanup. So things like:- $(PMC_DIR)\*.h Need to be:- $(PMC_DIR)\\*.h Parrot already does this in it's makefile on Win32 so doesn't have this issue. I've attached a patch that fixes things. Lyle

Parrot Bug Summary

2009-04-27 Thread Parrot Bug Summary
Parrot Bug Summary http://rt.perl.org/rt3/NoAuth/parrot/Overview.html Generated at Mon Apr 27 13:00:01 2009 GMT --- * Numbers * New Issues * Overview of Open Issues * Ticket Status By Version * Requestors with

Re: [perl #65138] [PATCH] Foo::_foo() parsefails

2009-04-27 Thread Patrick R. Michaud
On Sat, Apr 25, 2009 at 04:33:44PM -0700, Geoffrey Broadwell wrote: Rakudo doesn't parse Foo::_foo() properly, while Foo::foo() works fine. [...] $ ./perl6 -e 'module Foo { sub _foo { say foo } }; Foo::_foo()' Statement not terminated properly at line 1, near _foo() While the patch appears

Re: [perl #65006] mingw32-make realclean doesn't clean everything

2009-04-27 Thread Patrick R. Michaud
On Sun, Apr 26, 2009 at 07:04:28AM -0700, webmas...@cosmicperl.com via RT wrote: Infinoid helped me track the problem down to * being escaped on some of the directories for the cleanup. So things like:- $(PMC_DIR)\*.h Need to be:- $(PMC_DIR)\\*.h Parrot already does this in it's makefile

Re: [perl #65006] mingw32-make realclean doesn't clean everything

2009-04-27 Thread jerry gay
On Mon, Apr 27, 2009 at 08:02, Patrick R. Michaud pmich...@pobox.com wrote: On Sun, Apr 26, 2009 at 07:04:28AM -0700, webmas...@cosmicperl.com via RT wrote: Infinoid helped me track the problem down to * being escaped on some of the directories for the cleanup. So things like:-

Re: [perl #65138] [PATCH] Foo::_foo() parsefails

2009-04-27 Thread Patrick R. Michaud
On Mon, Apr 27, 2009 at 08:31:38AM -0500, Patrick R. Michaud wrote: On Sat, Apr 25, 2009 at 04:33:44PM -0700, Geoffrey Broadwell wrote: Rakudo doesn't parse Foo::_foo() properly, while Foo::foo() works fine. [...] $ ./perl6 -e 'module Foo { sub _foo { say foo } }; Foo::_foo()' Statement

Parrot's failing smoke tests

2009-04-27 Thread yary
Hello all, looks like Parrot's been failing some automated smoke tests for the last couple days. Here are links to the last passing reports: http://buildbot.eigenstate.net:8040/fc6-x86_64-trunk/builds/1451 http://buildbot.eigenstate.net:8040/OpenBSD-trunk-builder/builds/150 and the first failing

oops, server problem

2009-04-27 Thread yary
Looks like the failed tests are due to a problem uploading the reports, not with anything inside Parrot itself. I'll see if I can figure out who can fix that.

Re: [perl #65138] [PATCH] Foo::_foo() parsefails

2009-04-27 Thread Will Coleda
On Mon, Apr 27, 2009 at 12:26 PM, Patrick R. Michaud pmich...@pobox.com wrote: Answered on #perl6:    16:14 TimToady pmichaud: _ is considered an alpha So, we need to patch PGE so that alpha matches underscore, and we need some tests to match. Pm Created TT #585 for parrot to track this

[perl #65138] [PATCH] Foo::_foo() parsefails

2009-04-27 Thread Patrick R. Michaud via RT
Now fixed in f93154a. We need to verify there's a spectest for this particular problem. We should also add spectests to make sure that alpha matches underscores. Assigning to moritz++ for test updates. Thanks! Pm

[perl #64208] Segfault when make()ing things in a when-block in grammar actions

2009-04-27 Thread Patrick R. Michaud via RT
I think this bug should now be fixed in 456ade5 -- it no longer segfaults on the test program I'm giving it. The problem appears to have been that 'when' statements (and 'loop' and 'repeat') were failing to create the implicit $/ lexical var (as well as $_ and $!), and thus the 'make' function

Re: [perl #64208] Segfault when make()ing things in a when-block in grammar actions

2009-04-27 Thread Patrick R. Michaud
On Mon, Apr 27, 2009 at 08:45:47PM -0400, Will Coleda wrote: On Mon, Apr 27, 2009 at 8:10 PM, Patrick R. Michaud via RT perl6-bugs-follo...@perl.org wrote: I think this bug should now be fixed in 456ade5 -- it no longer segfaults on the test program I'm giving it.   [...] I'll assign the

Re: [perl #64208] Segfault when make()ing things in a when-block in grammar actions

2009-04-27 Thread Will Coleda
On Mon, Apr 27, 2009 at 8:10 PM, Patrick R. Michaud via RT perl6-bugs-follo...@perl.org wrote: I think this bug should now be fixed in 456ade5 -- it no longer segfaults on the test program I'm giving it.  The problem appears to have been that 'when' statements (and 'loop' and 'repeat') were

r26511 - docs/Perl6/Spec

2009-04-27 Thread pugs-commits
Author: lwall Date: 2009-04-28 06:14:10 +0200 (Tue, 28 Apr 2009) New Revision: 26511 Modified: docs/Perl6/Spec/S03-operators.pod docs/Perl6/Spec/S12-objects.pod Log: [S12] doc syntax for exporting subset and enum [S12] enum uses (...) rather than [...], since ... is defined as ()-like [S03]

Re: [Padre-dev] Padre Perl6 Outline view

2009-04-27 Thread Gabor Szabo
On Sun, Apr 26, 2009 at 12:14 AM, Ahmad Zawawi ahmad.zaw...@gmail.com wrote: Hi people, I just finished Perl6 Outline view which i promised Gabor 3 or 4 months ago :) So you can now see Perl 6 packages/modules/grammars/roles in parent nodes and under them you can see