On extra examination, it looks like the issue is simply due to OpenSSL not
being thread-safe and there's an open Issue on it for the topic as well:
https://github.com/sergot/openssl/issues/31
So, I think there's no Perl 6 problems here, so I'll close the ticket.
As for WWW module, I'll see abou
On extra examination, it looks like the issue is simply due to OpenSSL not
being thread-safe and there's an open Issue on it for the topic as well:
https://github.com/sergot/openssl/issues/31
So, I think there's no Perl 6 problems here, so I'll close the ticket.
As for WWW module, I'll see abou
# New Ticket Created by Zoffix Znet
# Please include the string: [perl #131279]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=131279 >
When looking up something with `[...]` postcircumfix, you can add more
postcircumfixes to
# New Ticket Created by Zoffix Znet
# Please include the string: [perl #131280]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=131280 >
You can give a nested slice as a list and get the result similarly nested,
however, this
# New Ticket Created by "Brian S. Julin"
# Please include the string: [perl #131281]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=131281 >
There are some misbehaviors when a next clause is encountered on what would be
the
On Tue, 09 May 2017 11:17:23 -0700, b...@abrij.org wrote:
>
> There are some misbehaviors when a next clause is encountered on what
> would be the last iteration of a loop construct. An extra Mu is
> injected into the return value for that iteration, and the termination
> test may be bypassed.
>
On Tue, 05 Aug 2014 14:27:17 -0700, masak wrote:
> m: my @a = $(1, 2, 3); say [>>+<<] @a;
> rakudo-moar 3ad15f: OUTPUT«Not enough positional parameters
> passed; got 1 but expected 2 [...]
> m: my @a = $(1, 2, 3), $(0, 0, 0); say [>>+<<] @a;
> rakudo-moar 3ad15f: OUTPUT«1 2 3»
> ^- i don't kn
On Mon, 07 Jul 2014 13:35:26 -0700, coke wrote:
> On Sat Jan 04 06:24:21 2014, masak wrote:
> > p: say &OUR::bar()
> > rakudo-parrot e32249: OUTPUT«No such method 'Any' for
> > invocant of type 'Parcel' [...]
> > anyway, that error mesage is LTA
> > * masak submits LTA error message
>
> Even mo
# New Ticket Created by Curt Tilmes
# Please include the string: [perl #131278]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=131278 >
m: my $i = -0x8000; say ($i div 2**12) == ($i +> 12) ??
'good' !! 'bad';
rak