Re: [perl #64478] Pairs constructor :pair and :!pair do not work properly in Rakudo

2009-04-06 Thread Илья
Argh, gmail eat one. 2009/4/7 Илья : > Hi there, > Moritz++ and Jonathan++ help my to make patch for this bug, diffs in attach. > > Ilya > > 2009/4/5 Ilya Belikin : >> # New Ticket Created by  Ilya Belikin >> # Please include the string:  [perl #64478] >> # in the subject line of all future corres

[perl #64062] split should return captured delimiters

2009-04-06 Thread Ron Schmidt via RT
An irc discussion (http://irclog.perlgeek.de/perl6/2009-04- 06#i_1042505) related to this ticket yielded some new insights. The premise of the ticket differs some from the p6 synopsis/spec (http://svn.pugscode.org/pugs/docs/Perl6/Spec/S32-setting- library/Str.pod), seeming closer to the p5 behav

Re: [perl #64478] Pairs constructor :pair and :!pair do not work properly in Rakudo

2009-04-06 Thread Илья
Yet Another Approach diff --git a/src/parser/actions.pm b/src/parser/actions.pm index 6939aac..c198252 100644 --- a/src/parser/actions.pm +++ b/src/parser/actions.pm @@ -2880,7 +2880,7 @@ method colonpair($/, $key) { if $key eq 'false' { $pair_key := PAST::Val.new( :value(~$) ); -

Re: Rakudo on Vista

2009-04-06 Thread Moritz Lenz
Lyle wrote: > Ron Blaschke wrote: >> On 06.04.2009 04:17, Bruce Gray wrote: >> >>> On Apr 5, 2009, at 6:48 PM, Lyle wrote: >>> --snip-- There is a problem with the Rakudo Makefile? Help would be very much appreciated... http://perl.bristolbath.org/blog/lyle/2009/04/first

Re: [perl #64478] Pairs constructor :pair and :!pair do not work properly in Rakudo

2009-04-06 Thread Илья
Hi there, Moritz++ and Jonathan++ help my to make patch for this bug, diffs in attach. Ilya 2009/4/5 Ilya Belikin : > # New Ticket Created by  Ilya Belikin > # Please include the string:  [perl #64478] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/r

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

2009-04-06 Thread pugs-commits
Author: lwall Date: 2009-04-06 21:52:18 +0200 (Mon, 06 Apr 2009) New Revision: 26101 Modified: docs/Perl6/Spec/S32-setting-library/Str.pod Log: [S32/Str] add :all flag to split Modified: docs/Perl6/Spec/S32-setting-library/Str.pod ==

Re: some questions about S02(type)

2009-04-06 Thread Darren Duncan
Xiao Yafeng wrote: I don't think an array of hashes and a hash of arrays could perfectly represent a Table type. There are several important facts of a relational model:unordered columns and tupples, various constraints on columns. E.g. how can we represent multi-unique constraints as an array of

Re: some questions about S02(type)

2009-04-06 Thread Darren Duncan
Timothy S. Nelson wrote: On Sat, 4 Apr 2009, Darren Duncan wrote: Speaking of libraries, I already implemented a table type ... it's called Set::Relation/::V2 and its on CPAN right now ... for Perl 5 ... I still have to port it to Perl 6, unless someone else wants to do that, but I designed it

r26100 - docs/Perl6/Spec

2009-04-06 Thread pugs-commits
Author: lwall Date: 2009-04-06 18:41:16 +0200 (Mon, 06 Apr 2009) New Revision: 26100 Modified: docs/Perl6/Spec/S09-data.pod Log: Be explicit about design uncertainty wrt semantics of junctional collapse. Modified: docs/Perl6/Spec/S09-data.pod ==

Re: Rakudo on Vista

2009-04-06 Thread Ron Blaschke
On 06.04.2009 04:17, Bruce Gray wrote: > > On Apr 5, 2009, at 6:48 PM, Lyle wrote: >> --snip-- >> There is a problem with the Rakudo Makefile? Help would be very much >> appreciated... >> http://perl.bristolbath.org/blog/lyle/2009/04/first-perl-6-experiences.html >> > > Yes, there is a problem. I

Re: Rakudo on Vista

2009-04-06 Thread François Perrad
2009/4/6 Bruce Gray : > > On Apr 5, 2009, at 6:48 PM, Lyle wrote: >> >> --snip-- >> There is a problem with the Rakudo Makefile? Help would be very much >> appreciated... >> >> http://perl.bristolbath.org/blog/lyle/2009/04/first-perl-6-experiences.html > > Yes, there is a problem. I have duplicated

Parrot Bug Summary

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

[perl #64494] Multiple constraints shouldn't be allowed before a variable in Rakudo

2009-04-06 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64494] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64494 > rakudo: role Foo {}; role Bar {}; sub baz(Foo Bar $a) {}; say "should not be alive here

[perl #64482] [TODO] Make Range do Positional in Rakudo

2009-04-06 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64482] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64482 > rakudo: say (1..8)[*-1] Well, I guess we can hand back Inf. rakudo 0310a3: OUTPUT«ele

[perl #64474] Whatever do not work as specified with zip operator

2009-04-06 Thread via RT
# New Ticket Created by Ilya Belikin # Please include the string: [perl #64474] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64474 > Hi there, > say ( Z [1,*]).perl ["a", 1, "b", *] # wrong, should be: ["a", 1, "b", *, "

[perl #64496] Null PMC access when calling IO.readline() in Rakudo

2009-04-06 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64496] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64496 > rakudo: my IO $a; $a.readline # mwhahaha. rakudo 0310a3: OUTPUT«Null PMC access in get

[perl #64478] Pairs constructor :pair and :!pair do not work properly in Rakudo

2009-04-06 Thread via RT
# New Ticket Created by Ilya Belikin # Please include the string: [perl #64478] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64478 > Ho there, Pairs constructor changed: S02, L2538 Fat arrow Adverbial pai

Re: Rakudo on Vista

2009-04-06 Thread Lyle
Ron Blaschke wrote: On 06.04.2009 04:17, Bruce Gray wrote: On Apr 5, 2009, at 6:48 PM, Lyle wrote: --snip-- There is a problem with the Rakudo Makefile? Help would be very much appreciated... http://perl.bristolbath.org/blog/lyle/2009/04/first-perl-6-experiences.html Yes, there