Re: r30398 - docs/Perl6/Spec/S32-setting-library

2010-04-16 Thread Mark J. Reed
" On Friday, April 16, 2010, Mark J. Reed wrote: > or at least, Date should have a method that returns it's value as > pairs suitable for passing to DateTime.new. Obviously that should be "its value". Thank you, iPhone, for thinking you know better than I how to punctuate. :) -- Mark J. Reed

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

2010-04-16 Thread Mark J. Reed
I would only add that I think the DateTime constructor should accept a Date object: my $bday = new Date.new(1968, 5, 5); my $specifically = DateTime.new(:date($bday), :hour(20), :minute(47)); or at least, Date should have a method that returns it's value as pairs suitable for passing to DateTime.

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

2010-04-16 Thread pugs-commits
Author: moritz Date: 2010-04-16 22:40:37 +0200 (Fri, 16 Apr 2010) New Revision: 30398 Modified: docs/Perl6/Spec/S32-setting-library/Temporal.pod Log: [S32/Temporal] spec Date type This is heavily inspired by Date::Simple on CPAN, and mostly implemented at http://github.com/moritz/Date/ as an e

[perl #74430] [BUG] Indexing and 'is copy' array parameters interact badly in Rakudo

2010-04-16 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74430] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74430 > rakudo: my @a = 1..10; say @a.PARROT; @a.splice(0, 1); say @a rakudo 78faa0: OUTPUT«Ar

Updated: parrot-2.2.0-1 New: rakudo-201003-1 (aka perl6)

2010-04-16 Thread Reini Urban
I updated the parrot and rakudo packages from 0.8.2 to 2.2.0-1 in the Cygwin distribution. rakudo switched to date versioning for the monthly releases, so that's 201003 now, the april release on the horizon. This is not from any branch of mine anymore, with only minimal patches. Canonical home

Re: [perl #74432] AutoReply: cygwin fixes

2010-04-16 Thread Reini Urban
Annyoing tabs and missing chmod +x Sorry, scratch that. This patch is actually tested now. The real problem: /usr/bin/perl -MExtUtils::Command -e cp src/pmc/perl6_group.dll src/ops/perl6_ops.dll src/ops/perl6_ops_switch.dll dynext removes the existing -x bit, so it's p5 fault here. Incredibl

[perl #74434] [PATCH] install needs docs and man

2010-04-16 Thread via RT
# New Ticket Created by Reini Urban # Please include the string: [perl #74434] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74434 > I cannot make packages without docs and man page. Unfortunately the DOC_DIR or better DO

[perl #74432] cygwin fixes

2010-04-16 Thread via RT
# New Ticket Created by Reini Urban # Please include the string: [perl #74432] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74432 > Annyoing tabs and missing chmod +x -- Reini Urban http://phpwiki.org/ http://murbreak.a

[perl #74426] [BUG] Can't make use of nested class declarations in Rakudo

2010-04-16 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74426] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74426 > rakudo: class A { class B {} }; A::B.new # this should work, shouldn't it? rakudo 78fa

[perl #74414] [BUG] Multiple dispatch doesn't treat 'rw' parameters as narrower than readonly parameters in Rakudo

2010-04-16 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74414] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74414 > rakudo: multi foo(Int $x is rw) { say "writable" }; multi foo(Int $x) { "readonly" }; f

[perl #74412] [BUG] Null PMC access when accessing a variable in a class package through its long name in Rakudo

2010-04-16 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74412] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74412 > alpha: class A { my $b; method c { $A::b = 5; say $A::b } }; A.new.c alpha 30e0ed: OUT

[perl #74410] [BUG] The combination of prefix:<+> and slurpy arrays doesn't work in Rakudo

2010-04-16 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74410] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=74410 > rakudo: -> *...@a { @a[+0] }.() rakudo 78faa0: OUTPUT«No applicable candidates found t

[perl #62198] [TODO] implement interpolation of @things.with.postcircumfix.[the]('end') in interpolating strings

2010-04-16 Thread jn...@jnthn.net via RT
On Fri Aug 22 15:34:38 2008, pmichaud wrote: > On Fri, Aug 22, 2008 at 07:05:00AM -0700, Clinton Gormley wrote: > > > > my @a = < 1 2 3 >; > > say "@a[]"; > > > "@a[]" > > > > Broken in version 29834 > > Correct, rakudo doesn't yet know how to interpolate arrays > or hashes in double-quoted str