RE: Offering my help with the Perl6 Text::Markdown module

2017-09-17 Thread andrew
I’ve added you to the repository – sorry about the delay, and thanks for the help with the module! From: JJ Merelo Sent: Sunday, September 17, 2017 4:51 AM To: and...@egeler.us Cc: perl6-us...@perl.org Subject: Offering my help with the Perl6 Text::Markdown module Hi, Andrew: This is JJ Merelo,

[perl #130020] [RFC][@LARRY] Create a set of conventions to minimize impact internal changes to user's code

2017-09-17 Thread Brian S. Julin via RT
On Sun, 17 Sep 2017 08:44:47 -0700, c...@zoffix.com wrote: > More comments on similar issue: https://irclog.perlgeek.de/perl6/2017- > 09-17#i_15176823 > > Basically, a lot of core constructs aren't workable with user-land > subclasses. Note on the performance concerns... if we had a

[perl #126890] [BUG] pair with Nil key deparses incorrectly

2017-09-17 Thread Brian S. Julin via RT
On Sun, 13 Dec 2015 06:03:35 -0800, elizabeth wrote: > Completely right! > > 5b6cbc7d54ce5ad252cf74 fixes Pair.perl properly. > > > Liz > > > On 13 Dec 2015, at 11:16, Timo Paulssen wrote: > > > > I think you might have misread the bug report. > > > > This bug is about the

Offering my help with the Perl6 Text::Markdown module

2017-09-17 Thread JJ Merelo
Hi, Andrew: This is JJ Merelo, JJ in GitHub. I have been using your Text::Markdown module quite extensively, but I've had to patch a few things; on 30th July I also opened a pull request which I have increased lately with Altai-man's other pull request. Since I think that your module is great for

[perl #132113] [BUG] user-defined postfix operators don't work well in the REPL

2017-09-17 Thread via RT
# New Ticket Created by Dan Zwell # Please include the string: [perl #132113] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132113 > The following code works fine if run in a script or with `perl6 -e '...'`, but fails when

Re: [perl #132088] [REGRESSION][NATIVECALL] code broken by latest build

2017-09-17 Thread Gabriel Ash via RT
Thank you!! On 9/15/2017 2:03 PM, Timo Paulssen via RT wrote: > I just committed a hotfix so the upcoming release can go through. > Hopefully it can be replaced with a proper implementation of optional > parameters for the nativecall compiler soon. > >

Announce: Rakudo Perl 6 compiler, Release #115 (2017.09)

2017-09-17 Thread Aleks-Daniel Jakimenko-Aleksejev
On behalf of the Rakudo development team, I’m very happy to announce the September 2017 release of Rakudo Perl 6 #115. Rakudo is an implementation of Perl 6 on the Moar Virtual Machine[^1]. This release implements the 6.c version of the Perl 6 specifications. It includes bugfixes and

[perl #132108] [REGRESSION] Test output should not be buffered even for non-TTYs (prove -j 8 …)

2017-09-17 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
The change was made in https://github.com/rakudo/rakudo/pull/1160 See also: https://rt.perl.org/Ticket/Display.html?id=132111 On 2017-09-16 21:06:03, coke wrote: > See https://rt.cpan.org/Public/Bug/Display.html?id=108390 which was > mentioned here: > >

[perl #125466] [MATH] bitwise shift is inconsistent on int

2017-09-17 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
Plain-wrongs and WHATs print different results today. Bisectable points at https://github.com/rakudo/rakudo/commit/242baf256a210f1cb643cb6324916dbc76184c9f I think we now only need tests for this ticket. On 2015-06-23 09:05:43, hmbrand wrote: > $ perl6 -e'my int $i = int.Range.min; say $i; say

[perl #132114] t\04-nativecall\21-callback-other-thread.t is flapping on appveyor

2017-09-17 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #132114] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132114 > It happens often and that's why we sometimes get false-red CI

[perl #111474] [TESTNEEDED] Variable in EVAL'ed subregex doesn't get a proper lexical lookup

2017-09-17 Thread Brian S. Julin via RT
On Sun, 03 Mar 2013 10:47:32 -0800, FROGGS.de wrote: > There are weird things goind on: > > good: > r: '' ~~ / :my $a; <{ '$a' }> / > rakudo 123dfa: ( no output ) > > good: > r: say '' ~~ / :my $a; <{ '$a' }> / > rakudo 123dfa: OUTPUT«#␤» > > weird: > r: say '123' ~~ / :my $a=2; <{ '$a'

Re: :: question

2017-09-17 Thread ToddAndMargo
On Fri, Sep 15, 2017 at 5:39 PM, ToddAndMargo > wrote: On 09/13/2017 10:57 PM, Brandon Allbery wrote: On Thu, Sep 14, 2017 at 1:48 AM, Brandon Allbery

[perl #132111] Make it possible to change the buffer size on a handle (.set-buffer?)

2017-09-17 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
Once this is implemented, replace nqp::setbuffersizefh with it in Test.pm6. On 2017-09-17 08:38:34, alex.jakime...@gmail.com wrote: > Using nqp, one can do something like: > > nqp::setbuffersizefh(nqp::getstdout(), 0); > > But it would be nice if it was available from Perl 6 level. > > > See

[perl #132111] Make it possible to change the buffer size on a handle (.set-buffer?)

2017-09-17 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #132111] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132111 > Using nqp, one can do something like:

[perl #132110] [BUG] cannot include a module directory if some subdirectory cannot be opened

2017-09-17 Thread via RT
# New Ticket Created by Dan Zwell # Please include the string: [perl #132110] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132110 > Use case: for testing modules as they are being edited, developers add '.' to the module

Re: :: question

2017-09-17 Thread yary
9: our sub Which ( What if you remove the space between Which and the paren? -y On Fri, Sep 15, 2017 at 5:39 PM, ToddAndMargo wrote: > On 09/13/2017 10:57 PM, Brandon Allbery wrote: > >> On Thu, Sep 14, 2017 at 1:48 AM, Brandon Allbery >

Re: [perl #132109] [BUG] `.skip` on a sequence starting with a `Slip`, returns a corrupted `Seq`

2017-09-17 Thread Elizabeth Mattijsen via RT
> On 17 Sep 2017, at 07:29, Sam S. (via RT) > wrote: > > # New Ticket Created by Sam S. > # Please include the string: [perl #132109] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132109 >

Re: [perl #132109] [BUG] `.skip` on a sequence starting with a `Slip`, returns a corrupted `Seq`

2017-09-17 Thread Elizabeth Mattijsen
> On 17 Sep 2017, at 07:29, Sam S. (via RT) > wrote: > > # New Ticket Created by Sam S. > # Please include the string: [perl #132109] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=132109 >

Re: rw optional parameters

2017-09-17 Thread Elizabeth Mattijsen
> On 17 Sep 2017, at 01:45, Norman Gaywood wrote: > Still, I wonder if the compiler should have error'ed before I actually tried > to assign to the variable at run-time. > > The compiler should know that I can't do: > > sub MAIN( :$debug = False, :$verbose = False ) { >

[perl #129215] Passing a Hash[...] as a parameter to an imported sub

2017-09-17 Thread Brian S. Julin via RT
On Tue, 06 Sep 2016 13:26:42 -0700, r...@ringlet.net wrote: > Hi, > > So here's the main program: > > #!/usr/bin/perl6 > > use v6.c; > > use lib '.'; > use trap; > > sub woof-local(Hash[Str:D] $data) > { > return $data[0]; > } > > { > my %opts = title => 'Something something