[perl #123674] Supply.categorize.done doesn't distribute .done to sub-supplies

2015-01-25 Thread via RT
# New Ticket Created by Alexander Moquin # Please include the string: [perl #123674] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123674 > Tapping Supply.categorize(&key-generator) results in a key => Supply pair. However, w

[perl #114672] [BUG] LTA error message: wrong class reported in non-existent attribute error in Rakudo

2015-01-25 Thread Christian Bartolomaeus via RT
This now gives a segfault on Moar and Parrot and an internal error on JVM: debian7$ perl6-m --version # same rakudo version for perl6-p and perl6-j This is perl6 version 2015.01-6-g25da7a9 built on MoarVM version 2015.01-5-ga29eaa9 debian7$ perl6-m -e 'class A {}; class B is A { has $!x = 5; ou

[perl6/specs] 61f7da: Adding required empty line before `=for`

2015-01-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 61f7da8042e456c6c4f744a651b668397a2637c5 https://github.com/perl6/specs/commit/61f7da8042e456c6c4f744a651b668397a2637c5 Author: Paul Cochrane Date: 2015-01-24 (Sat, 24 Jan 2015) Changed paths: M S21-

[perl6/specs] 774173: A tentative definition of YAPAE

2015-01-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 7741735661dac41bc55775294eefc60f50195ce2 https://github.com/perl6/specs/commit/7741735661dac41bc55775294eefc60f50195ce2 Author: ab5tract Date: 2015-01-13 (Tue, 13 Jan 2015) Changed paths: M S99-gloss

[perl6/specs] 53dfef: S24: Add missing "_" in is_approx

2015-01-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 53dfefc80c6ae380e5bb2496a71e9ebfde668d07 https://github.com/perl6/specs/commit/53dfefc80c6ae380e5bb2496a71e9ebfde668d07 Author: Maxim Vuets Date: 2015-01-24 (Sat, 24 Jan 2015) Changed paths: M S24-te

[perl6/specs] 9708f2: Correcting misplaced section links in glossary

2015-01-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 9708f2e3ec55334300e927327be476eaea28bb5f https://github.com/perl6/specs/commit/9708f2e3ec55334300e927327be476eaea28bb5f Author: Paul Cochrane Date: 2015-01-24 (Sat, 24 Jan 2015) Changed paths: M S99-

[perl6/specs] 39517a: glossary: Add an example for an infix

2015-01-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 39517abc8e8673997c736393f7d205b252d15b40 https://github.com/perl6/specs/commit/39517abc8e8673997c736393f7d205b252d15b40 Author: Moritz Lenz Date: 2015-01-24 (Sat, 24 Jan 2015) Changed paths: M S99-gl

[perl6/specs] 662083: Resolving unresolved internal links in glossary

2015-01-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 66208307327e7d593a5971873a3efe2c8cc684c6 https://github.com/perl6/specs/commit/66208307327e7d593a5971873a3efe2c8cc684c6 Author: Paul Cochrane Date: 2015-01-24 (Sat, 24 Jan 2015) Changed paths: M S99-

[perl6/specs] d8d34b: Correcting typos, minor grammatical errors, etc. i...

2015-01-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: d8d34bbae48be134665cd74f52a998318575c1b9 https://github.com/perl6/specs/commit/d8d34bbae48be134665cd74f52a998318575c1b9 Author: Paul Cochrane Date: 2015-01-22 (Thu, 22 Jan 2015) Changed paths: M S99-

[perl6/specs] fc4686: Refreshing contents.pod

2015-01-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: fc468668e5df642cb1d77d31303bdf98f723be76 https://github.com/perl6/specs/commit/fc468668e5df642cb1d77d31303bdf98f723be76 Author: Paul Cochrane Date: 2015-01-23 (Fri, 23 Jan 2015) Changed paths: M cont

[perl #123673] Rakudo silently loses information on .encode for non-representable characters

2015-01-25 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #123673] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123673 > m: say 'ö'.encode('ASCII') rakudo-moar 7e8d8a: OUTPUT«Blob[uint8]:0x<3f>␤» that looks l

[perl #84280] [BUG] LTA error message when multi sub exported out of a module fails to bind to an argument that happens to be a block

2015-01-25 Thread Christian Bartolomaeus via RT
I added a test to S11-modules/export.t with commit https://github.com/perl6/roast/commit/3101a0468f I'm closing this ticket now.

[perl #109880] [BUG] Something is wrong with instantiation of generic roles and typed attributes in Rakudo

2015-01-25 Thread Christian Bartolomaeus via RT
As a status update: This behaves differently now. $ perl6-m -e 'role Foo[::T] { has T @.a = [T] }; class Bar {}; say Foo[Bar].new.a[0]' Type check failed in assignment to '@!a'; expected 'Bar' but got 'Array' in method REIFY at src/gen/m-CORE.setting:9935 in method reify at src/gen/m-CORE.set

[perl #114526] substr-rw() doesn't handle short strings

2015-01-25 Thread Christian Bartolomaeus via RT
This works on Moar and JVM but dies on Parrot: $ perl6-m -e 'my $p = "ab"; substr-rw($p, 0, 3) = "/"; say "--$p--"' ## same output with perl6-j --/-- $ perl6-p -e 'my $p = "ab"; substr-rw($p, 0, 3) = "/"; say "--$p--"' Cannot take substr outside string in sub at gen/parrot/CORE.setting:7740