[perl #64860] [PATCH] Move trig functions into setting

2009-04-20 Thread via RT
# 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/

[perl #64878] Greek letters in variable names do not work in Rakudo

2009-04-20 Thread Carl Mäsak
# 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,

[perl #61128] some classes leak through from Parrot and cannot be declared in Rakudo

2009-04-20 Thread Carl Mäsak via RT
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++

Re: [perl #64858] PATCH: Add .get method to Iterator

2009-04-20 Thread Brian S. Julin
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

[perl #64770] Cannot mix into Perl6Array in Rakudo

2009-04-20 Thread jn...@jnthn.net via RT
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

[perl #64882] Dispatch fails to multi with a named and a slurpy in Rakudo

2009-04-20 Thread Carl Mäsak
# 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

[perl #64886] For (1..10000000000) bug

2009-04-20 Thread Kamil Ku�aga
# 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.

[perl #64824] .parse on a Grammar doesn't seem to bind in actions in Rakudo

2009-04-20 Thread Carl Mäsak via RT
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

[perl #64864] S32-str/samecase.t spectest failure on MSWin32

2009-04-20 Thread via RT
# 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<

[perl #64866] S02-builtin_data_types/type.t spectest failure on MSWin32

2009-04-20 Thread via RT
# 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

[perl #64856] [BUG] PERL6LIB building @*INC on Windows

2009-04-20 Thread webmas...@cosmicperl.com (via RT)
# 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

perl6-all@perl.org

2009-04-20 Thread via RT
# 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

[perl #64876] Null PMC access when calling a defined sub in a module in Rakudo

2009-04-20 Thread Carl Mäsak
# 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

[perl #64868] [TODO] build system improvements

2009-04-20 Thread via RT
# 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

[perl #64858] PATCH: Add .get method to Iterator

2009-04-20 Thread Brian S. Julin
# 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

[perl #64874] No result object after a successful match against Perl6::Grammar in Rakudo

2009-04-20 Thread Carl Mäsak
# 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

[perl #64854] [PATCH] added chdir and $*CWD

2009-04-20 Thread webmas...@cosmicperl.com (via RT)
# 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.

[perl #64846] Rakudo can't handle ::$x() where $x isa Str

2009-04-20 Thread Carl Mäsak
# 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

[perl #64880] TODO: Double quotes in regexes

2009-04-20 Thread via RT
# 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

[perl #64850] Null PMC access when binding an attribute in a method in Rakudo

2009-04-20 Thread Carl Mäsak
# 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

[perl #64866] S02-builtin_data_types/type.t spectest failure on MSWin32

2009-04-20 Thread jn...@jnthn.net via RT
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

[perl #64864] S32-str/samecase.t spectest failure on MSWin32

2009-04-20 Thread jn...@jnthn.net via RT
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

2009-04-20 Thread Parrot Bug Summary
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

[perl #64554] 'my @x of Int' parses, but doesn't work

2009-04-20 Thread jn...@jnthn.net via RT
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

[perl #64042] [BUG] rakudo - assign with "of Type" doesn't constraint

2009-04-20 Thread jn...@jnthn.net via RT
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

[perl #64694] [BUG] Rakudo fails to build against parrot r38094

2009-04-20 Thread Patrick R. Michaud via RT
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

r26304 - docs/Perl6/Spec

2009-04-20 Thread pugs-commits
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

r26302 - in docs/Perl6/Spec: . S32-setting-library

2009-04-20 Thread pugs-commits
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

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

2009-04-20 Thread pugs-commits
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

r26298 - docs/Perl6/Spec

2009-04-20 Thread pugs-commits
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