# New Ticket Created by Cory Spencer
# Please include the string: [perl #64860]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64860 >
The attached patch moves the trigonometry functions into setting/Num.pm
from builtins/
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64878]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64878 >
rakudo: my $βοο = "καλλω"; print $βοο;
rakudo 0d5515: OUTPUT«error:imcc:syntax error,
rakudo: class Task {}
rakudo 039f6d: ( no output )
if someone wants to close
http://rt.perl.org/rt3/Public/Bug/Display.html?id=61128 dependent on
closed tt 71 maybe they can ...
* masak closes
PhatEddy++
On Sun, 19 Apr 2009, Moritz Lenz via RT wrote:
I'm a bit confused though - why is prefix:<=> in IO.pir, while .get is
in Iterator.pir - both seem to have the same function. Is there a good
reason for that?
Iterator will support .get. It's unclear whether IO will as well,
or whether it will s
On Thu Apr 16 06:29:21 2009, masak wrote:
> Rakudo 2c13d6 doesn't allow me to mix a role's method into an Array
object.
>
> $ perl6 -e 'role DebugLog { method log_message { say $^message } }; my
> @array does DebugLog; @array.log_message("OH HAI")'
> Method 'log_message' not found for invocant of
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64882]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64882 >
rakudo: multi foo(Int $x, Bool :$flag, *...@vals) { say "bar
1" }; foo(1)
rakudo 0d55
# New Ticket Created by "Kamil KuÅaga"
# Please include the string: [perl #64886]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64886 >
$ cat normal.pl; ./perl6 normal.pl
for (1..5){
say "b";
}
b
b
b
b
b
$ cat destroyer.
rakudo: grammar A { regex TOP { }; regex foo { foo {*}
}}; class Act { method foo($/) { say "OH HAI" } }; A.parse("foo",
:action(Act));
rakudo a58fce: OUTPUT«OH HAI»
* masak disqualifies rakudobug
* masak hangs head in shame
# New Ticket Created by Cosimo Streppone
# Please include the string: [perl #64864]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64864 >
S32-str/samecase.t fails for me.
Here's the test output:
8<
# New Ticket Created by Cosimo Streppone
# Please include the string: [perl #64866]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64866 >
Here's the test output:
t/spec/S02-builtin_data_types\type Failed 1/32 subtests
# New Ticket Created by webmas...@cosmicperl.com
# Please include the string: [perl #64856]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64856 >
In src/builtins/globals.pir the following code builds @*INC from
PERL6LIB e
# New Ticket Created by Panu Ervamaa
# Please include the string: [perl #64848]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64848 >
17:07 < pnu> Let's say i have $x='foo' how do i call foo() -- i recall
there was a synt
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64876]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64876 >
rakudo: module A { sub foo() { return 42 }; say foo }
rakudo 0d5515: OUTPUT«Null PMC a
# New Ticket Created by Moritz Lenz
# Please include the string: [perl #64868]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64868 >
Rakudo's build system is currently suboptimal in various ways. At least
some of these ite
# New Ticket Created by "Brian S. Julin"
# Please include the string: [perl #64858]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64858 >
prefix:<=> has been summarily executed.
>From 49abde08f49bb6b3b3a201bc8599fcb093549
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64874]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64874 >
rakudo: 'say 1' ~~ //; say $/.perl;
rakudo 0d5515: OUTPUT«No result object [...]
Tene
# New Ticket Created by webmas...@cosmicperl.com
# Please include the string: [perl #64854]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64854 >
Hi,
Please find the patch attached. Let me know if you have any questions.
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64846]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64846 >
rakudo: sub foo { say "bar" }; my $x = 'foo'; ::$x()
rakudo df8662: OUTPUT«ResizablePM
# New Ticket Created by Arne Skjærholt
# Please include the string: [perl #64880]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64880 >
According to S05, the section entitled "Simplified lexical parsing of
patterns", doubl
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #64850]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=64850 >
rakudo: class A { has $.x; method foo { $!x := 42 } }; my $a =
A.new; $a.foo; say A.x
On Sun Apr 19 13:31:58 2009, cos...@streppone.it wrote:
> Here's the test output:
>
> t/spec/S02-builtin_data_types\type Failed 1/32 subtests
> (less 10 skipped subtests: 21 okay)
>
I suspect this was an inconsistency of spectest version and Rakudo
version (this file has been unfudg
On Sun Apr 19 13:30:22 2009, cos...@streppone.it wrote:
> S32-str/samecase.t fails for me.
> Here's the test output:
>
> 8<--
>
> t/spec/S32-str/samecase1/9 no ICU lib loaded
>
I've now marked this as a test that requires ICU to be run.
Thanks,
Jonat
Parrot Bug Summary
http://rt.perl.org/rt3/NoAuth/parrot/Overview.html
Generated at Mon Apr 20 13:00:01 2009 GMT
---
* Numbers
* New Issues
* Overview of Open Issues
* Ticket Status By Version
* Requestors with m
On Wed Apr 08 05:10:21 2009, ml...@physik.uni-wuerzburg.de wrote:
> 14:08 <@moritz_> rakudo: my @x of Int; say @x.of
> 14:08 < p6eval> rakudo 4abd89: OUTPUT«Object»
> 14:09 <@moritz_> rakudo: my Int @x; say @x.of
> 14:09 < p6eval> rakudo 4abd89: OUTPUT«Int»
>
Both work now; tests unfudged.
Than
On Mon Mar 23 13:24:52 2009, amoc wrote:
> "my Type $a" does constraint, while "my $a of Type" doesn't constraint.
Now they both constraint (and for arrays and hashes too) -
added/unfudged related tests.
Thanks,
Jonathan
On Sun Apr 19 17:47:13 2009, cosmicnetworks wrote:
> After a painful process of building different Parrots and trying to
> build Rakudo I found the problem starts with Parrot r38030.
>
> This revision of Parrot has the files \src\pmc\sharedref.pmc and
> src\pmc\ref.pmc removed.
>
> I guess there
Author: masak
Date: 2009-04-20 11:08:50 +0200 (Mon, 20 Apr 2009)
New Revision: 26304
Modified:
docs/Perl6/Spec/S11-modules.pod
Log:
[S11] added 'v' to version numbers within :ver()
When the version numbers are within :ver<>, the 'v' can be omitted. But in
:ver() they shouldn't be, because they
Author: lwall
Date: 2009-04-20 10:30:10 +0200 (Mon, 20 Apr 2009)
New Revision: 26302
Modified:
docs/Perl6/Spec/S07-iterators.pod
docs/Perl6/Spec/S32-setting-library/IO.pod
Log:
[S32] add limit to lines
[S07] refine get/iterator semantics; fix typos
Modified: docs/Perl6/Spec/S07-iterators.p
Author: lwall
Date: 2009-04-20 10:02:35 +0200 (Mon, 20 Apr 2009)
New Revision: 26299
Modified:
docs/Perl6/Spec/S32-setting-library/IO.pod
Log:
s/readline/get/
Modified: docs/Perl6/Spec/S32-setting-library/IO.pod
===
--- docs/Perl
Author: jnthn
Date: 2009-04-20 09:22:44 +0200 (Mon, 20 Apr 2009)
New Revision: 26298
Modified:
docs/Perl6/Spec/S02-bits.pod
Log:
Make S02 consistent with S14.
Modified: docs/Perl6/Spec/S02-bits.pod
===
--- docs/Perl6/Spec/S02-bits
30 matches
Mail list logo