[perl #126576] `SEQUENCE xx N` does not preserve structure

2015-11-05 Thread via RT
# New Ticket Created by Sam S. # Please include the string: [perl #126576] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126576 > When the LHS expression of xx is a List, the nested structure of the result is preserved:

[perl #126563] [BUG] 'X' meta-operator fails with RHS input from parenthesized output of another 'X'

2015-11-05 Thread via RT
# New Ticket Created by David Hoekman # Please include the string: [perl #126563] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126563 > In perl6 version 2015.10-158-gbccb16d built on MoarVM version 2015.10-46-g5bf7e46: Look

[perl #126573] Changed behaviour of "\r\n" in alternation regexp since Niceville

2015-11-05 Thread via RT
# New Ticket Created by steve mynott # Please include the string: [perl #126573] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126573 > 1. Original Behaviour under Niceville > say so "\r\n" ~~ /[";"|"\r\n"]/ True 2. As of N

[perl6/specs] 990d52: Add "XS" to glossary

2015-11-05 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 990d5260656f52175306036a10c85af26ed5731c https://github.com/perl6/specs/commit/990d5260656f52175306036a10c85af26ed5731c Author: Anthony Parsons Date: 2015-11-05 (Thu, 05 Nov 2015) Changed paths: M S9

[perl6/specs] aa5522: Update run/shell design to match reality.

2015-11-05 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: aa5522b92b5ac4ad37f1f6dd16c3dba568479cae https://github.com/perl6/specs/commit/aa5522b92b5ac4ad37f1f6dd16c3dba568479cae Author: jnthn Date: 2015-11-05 (Thu, 05 Nov 2015) Changed paths: M S29-function

[perl6/specs] 3b936e: Mention sink behavior of Proc.

2015-11-05 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 3b936eb5309bf5c8073316a0d45dd2c2a8b60034 https://github.com/perl6/specs/commit/3b936eb5309bf5c8073316a0d45dd2c2a8b60034 Author: jnthn Date: 2015-11-05 (Thu, 05 Nov 2015) Changed paths: M S29-function

[perl #126553] [BUG] IO::Socket::INET#get() returns multiple lines

2015-11-05 Thread via RT
# New Ticket Created by Taiki Kawakami # Please include the string: [perl #126553] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126553 > IO::Socket::INET#get() returns multiple line instead of a line. This behavior is confli

[perl #126560] $*USER and $*GROUP don't update when uid/gid change

2015-11-05 Thread via RT
# New Ticket Created by Cory Spencer # Please include the string: [perl #126560] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126560 > I recently committed the starts of a POSIX module to the p6 ecosystem and noticed that w

[perl #126574] Single named match does not work with hyper (».Str)

2015-11-05 Thread via RT
# New Ticket Created by B. N. # Please include the string: [perl #126574] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126574 > m: grammar G {rule TOP {}; token G1 {A}}; my $g = G.parse("A");  say $g».Str rakudo-moar c880f1

[perl #117039] [BUG] &run doesn't fail() when it fails in Rakudo

2015-11-05 Thread jn...@jnthn.net via RT
On Mon Mar 04 08:33:55 2013, masak wrote: > I should probably use &shell instead of &run in my program, but... > ...when I use &run, there's no indication at all that things > go wrong. no error. nothing. > like 'run("echo hi")' > "On failure to execute, the routines C." -- so, since > I use &r

[perl #123888] Cannot change input-line-separator

2015-11-05 Thread jn...@jnthn.net via RT
On Mon Mar 09 00:51:53 2015, Mouq wrote: > On Sun Mar 08 17:53:18 2015, Mouq wrote: > > On Thu Feb 19 23:22:42 2015, hmbrand wrote: > > > > > > $ echo -n "A+B+C+D+" >xx.txt > > > $ perl -wE'$/="+";say while<>' xx.txt > > > A+ > > > B+ > > > C+ > > > D+ > > > $ perl6 -e 'use v6;$*IN.input-line-separ

[perl #109306] IO::Socket::INET not properly handling input-line-separator param

2015-11-05 Thread jn...@jnthn.net via RT
On Sun Jan 29 02:39:03 2012, pawel.pab...@implix.com wrote: > Run following P6 listener: > > perl6 -e 'my $l = IO::Socket::INET.new( input-line-separator => > "\r\n", localport => 8080, :listen); while my $c = $l.accept() { for > ^10 { $c.get().encode().gist.say; }; $c.close }' > > Then call it w

[perl #126553] [BUG] IO::Socket::INET#get() returns multiple lines

2015-11-05 Thread jn...@jnthn.net via RT
On Tue Nov 03 08:15:44 2015, mozn...@gmail.com wrote: > IO::Socket::INET#get() returns multiple line instead of a line. > This behavior is conflicted to documentation > (http://doc.perl6.org/type/IO::Socket::INET#method_get). > > Panda uses this method on here > (https://github.com/tadzik/panda/bl

[perl #88674] \n should be 0x0d 0x0a on win32

2015-11-05 Thread jn...@jnthn.net via RT
On Fri Apr 15 12:06:47 2011, patrickas wrote: > On windows 7 and vista using "\n" does not produce \r\n > > The following > > my $file = open('foo.txt', :w); > $file.say("a\nb"); > $file.close; > > produces a file containing the bytes > > 61 0a 62 0a > > The expected bytes are > > 61 0d 0a 6

[perl #126569] xx-repeated expression enclosed in parens can't access the topic $_ of a statement modifier

2015-11-05 Thread via RT
# New Ticket Created by Sam S. # Please include the string: [perl #126569] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126569 > This works: ➜ .pick xx 10 given 1..6 (6 3 1 1 5 1 6 3 4 2) But putting parens around