Re: [perl #83498] [PATCH] for #82142:

2011-02-08 Thread anteusz
2011.02.07. 11:36 keltezéssel, Moritz Lenz via RT írta: And as an actual patch: --- a/src/Perl6/Grammar.pm +++ b/src/Perl6/Grammar.pm @@ -1477,6 +1477,7 @@ token quote:sym { } <.setup_quotepairs> [ +| '/' \s* '/'<.panic: "Null regex in substitution not allowed">

Re: New NQP repository, new “nom” Rakudo branch

2011-02-08 Thread Patrick R. Michaud
On Tue, Feb 08, 2011 at 10:36:34AM -0600, Patrick R. Michaud wrote: > As mentioned in the last week’s NQP Roadmap, we’ve now broken out > the new 6model-based NQP into its own repository on GitHub: > http://github.com/perl6/nqp . I neglected to mention in the above post that the new NQP is stil

[perl6/specs] a99b93: more level 1 Unicode conformance verbiage

2011-02-08 Thread noreply
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: a99b93d997f6c796f1826bbfa1f95306fdcb04e4 https://github.com/perl6/specs/commit/a99b93d997f6c796f1826bbfa1f95306fdcb04e4 Author: Larry Wall Date: 2011-02-08 (Tue, 08 Feb 2011) Changed paths: M S05-regex.pod Log Mes

[perl6/specs] bf8cb5: spec set ops and parens for character classes

2011-02-08 Thread noreply
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: bf8cb5adbe2f9106aa51f19485216f011b679bec https://github.com/perl6/specs/commit/bf8cb5adbe2f9106aa51f19485216f011b679bec Author: Larry Wall Date: 2011-02-08 (Tue, 08 Feb 2011) Changed paths: M S05-regex.pod Log Mes

[perl6/specs] 44aa7e: [S05] removed redundant .sort

2011-02-08 Thread noreply
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 44aa7e1266426338e7cdecb5df21d3ba3f29adfb https://github.com/perl6/specs/commit/44aa7e1266426338e7cdecb5df21d3ba3f29adfb Author: Carl Masak Date: 2011-02-08 (Tue, 08 Feb 2011) Changed paths: M S05-regex.pod Log Mes

[perl #83720] [BUG] There's a method .reals on Complex that gives the real and imaginary parts

2011-02-08 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #83720] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=83720 > is there a method that pulls out .re and .im as a list .reals that's so misnamed wha

[perl6/specs] 3bda36: Add missing "or"

2011-02-08 Thread noreply
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 3bda36af2adaf618f2d10c396f23dcd8f6c1b2d3 https://github.com/perl6/specs/commit/3bda36af2adaf618f2d10c396f23dcd8f6c1b2d3 Author: Bruce Gray Date: 2011-02-08 (Tue, 08 Feb 2011) Changed paths: M S04-control.pod Log M

New NQP repository, new “nom” Rakudo branch

2011-02-08 Thread Patrick R. Michaud
As mentioned in the last week’s NQP Roadmap, we’ve now broken out the new 6model-based NQP into its own repository on GitHub: http://github.com/perl6/nqp . We know there may be a bit of confusion between the two versions; just remember that “nqp-rx” always refers to the older one and “nqp” with

Re: [perl #83674] [BUG] .trans is too strict in what arguments it rejects in Rakudo

2011-02-08 Thread Carl Mäsak
masak (>): > rakudo: my @a = 1..10; say ~(@a>>.trans((1..26) => (14..26,1..13))) > rakudo a37640: OUTPUT«No candidates found to invoke for > method 'increment_index' on object of type 'LSM'; available candidates > have signatures:␤:(Mu : Regex $s;; *%_)␤:(Mu : Str $s;; *%_)␤␤  in > 'Cool::next_su

[perl #83674] [BUG] .trans is too strict in what arguments it rejects in Rakudo

2011-02-08 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #83674] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=83674 > rakudo: my @a = 1..10; say ~(@a>>.trans((1..26) => (14..26,1..13))) rakudo a37640: OUT