[perl #126102] [BUG] Rat.perl doesn't round-trip numerical value

2015-09-18 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #126102] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126102 > $ ./perl6 -e 'my $a = 0.8999; my $b = $a.perl.EVAL; say $a.WHICH; say $b.WHICH

[perl #126101] [BUG] 0.lotsof9s badly approximated

2015-09-18 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #126101] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126101 > $ ./perl6 -e 'my $a = 0.999; say $a; say $a.WHICH; say $a > 1' 1.0

[perl #126105] [BUG] Nil default value gets faulty error message

2015-09-18 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #126105] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126105 > $ ./perl6 -e 'my Int $a is default(Nil); say $a' ===SORRY!=== Error while compiling -e Default

[perl6/specs] bdbe96: Add postfix: to S03

2015-09-18 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: bdbe9647f7f6c35ab5ec3e2ed7a9eb302116f1af https://github.com/perl6/specs/commit/bdbe9647f7f6c35ab5ec3e2ed7a9eb302116f1af Author: ShimmerFairy Date: 2015-09-18 (Fri, 18 Sep 2015) Changed paths: M S03-o

[perl #126097] [BUG] lossy .perl for 0 but True

2015-09-18 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #126097] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126097 > If .perl is used to serialise a value of 0 but True, it doesn't represent the but-True aspect.

Re: [perl #126073] .unique on Supply after .grep with IO object causes high cpu usage and breaking of supply chain

2015-09-18 Thread Erik Ferguson
Great, thanks!

[perl #126098] [BUG] malformed .perl for Mu but True

2015-09-18 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #126098] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126098 > $ ./perl6 -e 'my $a = Mu but True; say $a.WHICH; say $a.perl; my $b = $a.perl.EVAL' Mu+{} Mu+{

[perl #126099] [BUG] .WHICH fails for Block but True

2015-09-18 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #126099] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126099 > Basic introspection methods fail on the value Block but True: $ ./perl6 -e 'my $a = Block; say

[perl #126104] [BUG] "is default" spuriously rejects default values

2015-09-18 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #126104] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126104 > $ ./perl6 -e 'my Any $a is default(3)' ===SORRY!=== Error while compiling -e Default value '3'

[perl #126103] [BUG] Rat literal fails for moderately large numerator

2015-09-18 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #126103] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126103 > $ ./perl6 -e 'my $a = <2147483647/1>; say 1' 1 $ ./perl6 -e 'my $a = <2147483648/1>; say 1' ===

[perl #126091] Nil type constraint yields bad error message

2015-09-18 Thread via RT
# New Ticket Created by Zefram # Please include the string: [perl #126091] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126091 > $ perl6 -e 'my Nil $a = 3' Type check failed in assignment to '$a'; expected 'Any' but got 'Int

[perl #126096] "require" broken in rakudo 2015.09

2015-09-18 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #126096] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126096 > mlenz@mlenz-workstation:~/p6/DBIish (master)$ perl6-m -Ilib -e 'require "DBDish::SQLite"'

[perl #126100] Wrong return value from "require"

2015-09-18 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #126100] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126100 > S11 says: > Additionally, the |require| expression evaluates to the value which is instal

[perl #119001] Passing a string that looks like an integer fails to match MAIN(Str)

2015-09-18 Thread Christian Bartolomaeus via RT
I added a test to S06-other/main-usage.t with commit https://github.com/perl6/roast/commit/f5a77ba56d I'm closing this ticket as 'resolved'.

[perl #112250] [TODO] IntStr NYI

2015-09-18 Thread Christian Bartolomaeus via RT
I added two tests for [max] and .max with commit https://github.com/perl6/roast/commit/76adbe5915 IntStr is tested in S02-literals/allomorphic.t I'm closing this ticket as 'resolved'.

[perl #124972] Roast rakudo skip/todo test:./S13-overloading/typecasting-long.t line:46 reason: 'cannot easily override {} at the moment'

2015-09-18 Thread Christian Bartolomaeus via RT
The test this ticket refers to was removed with commit https://github.com/perl6/roast/commit/a8f9dca88a ("remove obsolete overloading tests "). I'm closing this ticket as 'rejected'.

[perl #124971] Roast rakudo skip/todo test:./S13-overloading/typecasting-long.t line:31 reason: 'cannot easily override [] at the moment'

2015-09-18 Thread Christian Bartolomaeus via RT
The test this ticket refers to was removed with commit https://github.com/perl6/roast/commit/a8f9dca88a ("remove obsolete overloading tests "). I'm closing this ticket as 'rejected'.

[perl #126073] .unique on Supply after .grep with IO object causes high cpu usage and breaking of supply chain

2015-09-18 Thread Christian Bartolomaeus via RT
On Fri Sep 18 01:57:50 2015, elizabeth wrote: > Fixed with d25a07a09d4ad4fa8d9e , test added with 3165b8c85b30c9710e2, > can be closed Great! I'm closing this ticket as 'resolved'.

Re: [perl #126089] `done` outside of a supply block fails silently in Rakudo

2015-09-18 Thread Elizabeth Mattijsen
jnthn fixed this with f435959e8b4a1ec72c98bc , tests needed afaik > On 17 Sep 2015, at 22:44, Carl Mäsak (via RT) > wrote: > > # New Ticket Created by "Carl Mäsak" > # Please include the string: [perl #126089] > # in the subject line of all future correspondence about this issue. > # https:

Re: [perl #126073] .unique on Supply after .grep with IO object causes high cpu usage and breaking of supply chain

2015-09-18 Thread Elizabeth Mattijsen
Fixed with d25a07a09d4ad4fa8d9e , test added with 3165b8c85b30c9710e2, can be closed > On 16 Sep 2015, at 22:01, Erik Ferguson (via RT) > wrote: > > # New Ticket Created by Erik Ferguson > # Please include the string: [perl #126073] > # in the subject line of all future correspondence about

[perl #126092] pairs X pairs can't bind to subsig

2015-09-18 Thread via RT
# New Ticket Created by Larry Wall # Please include the string: [perl #126092] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126092 > 00:13 < TimToady> m: for (1,2,3).pairs X (4,5,6).pairs -> ($x,$y) { say "$x $y" } 00:13 <+c