[perl #131264] [SEGV] When using Promises with WWW module

2017-05-09 Thread Zoffix Znet via RT
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

[perl #131264] [SEGV] When using Promises with WWW module

2017-05-09 Thread Zoffix Znet via RT
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

[perl #131279] Can't index result of adverbial `[..]`

2017-05-09 Thread via RT
# 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

[perl #131280] [BUG] Nested slices do not work when adverbs are present

2017-05-09 Thread via RT
# 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

[perl #131281] next on last iteration of loop injects Mu into return value and fouls termination test

2017-05-09 Thread Brian S. Julin
# 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

[perl #131281] next on last iteration of loop injects Mu into return value and fouls termination test

2017-05-09 Thread Brian S. Julin via RT
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. >

[perl #122475] [BUG] reduce metaop of hyper metaop only works with two or more elements in Rakudo

2017-05-09 Thread Daniel Green via RT
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

[perl #120930] [BUG] LTA error message for &OUR::bar() when such a sub isn't found in Rakudo

2017-05-09 Thread Daniel Green via RT
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

[perl #131278] [BUG] bit shift broken at 32 bits

2017-05-09 Thread via RT
# 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