[perl #130716] [CONC] unbounded supply {} + react {} = pseudo-hang

2017-02-03 Thread via RT
# New Ticket Created by Geoffrey Broadwell # Please include the string: [perl #130716] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130716 > See the following gist: https://gist.github.com/japhb/40772099ed24e20ec2c37c06

[perl #130712] [LTA] Bad error message when user mistyped "returns" to "return" in *fix signatures

2017-02-03 Thread via RT
# New Ticket Created by Александр Кирюхин # Please include the string: [perl #130712] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130712 > > m: sub infix:<$>($x, $y) return Nil {} Cannot find method 'has_compile_time_value'

Re: [perl #130709] Issue with dynamic loading of module

2017-02-03 Thread Fields, Christopher J
Ah, okay, I missed that it isn’t in the ‘require’ but in the symbol lookup afterwards. Okay, I think this makes some sense (I’ll look through docs to see if it goes with what is mentioned there), though it is a bit inconsistent in behavior with the base ‘fasta' module working while the nested o

[perl #130715] IO::Handle::close shouldn't decide what's a failure

2017-02-03 Thread Zoffix Znet via RT
> But other close methods mention using a LEAVE > phaser to avoid exceptions. Would you be able to give a link where LEAVE is recommended? $proc.err.close doesn't throw; it returns the Proc object. The throwage happens when a Proc with non-zero exit status is **sunk**. So instead of the LEAVE st

[perl #130715] IO::Handle::close shouldn't decide what's a failure

2017-02-03 Thread brian d foy
# New Ticket Created by "brian d foy" # Please include the string: [perl #130715] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130715 > While trying to work around #125757 (using :out makes the Proc object always return zero

[perl #130714] [LTA] Already has attribute error lacks location of the offending line

2017-02-03 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #130714] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130714 > While the error is descriptive, it doesn't say where the offending duplicated attribute i

Re: [perl #130713] 42.expmod(-1,1) hangs

2017-02-03 Thread Elizabeth Mattijsen
> On 3 Feb 2017, at 22:34, Brandon Allbery wrote: > > > On Fri, Feb 3, 2017 at 4:33 PM, Elizabeth Mattijsen > wrote: > Assume this is a MoarVM issue, as this does not appear to be an issue on > MoarVM. > > ...which of those was supposed to be something else? The second: there’s no problem

Re: [perl #130713] 42.expmod(-1,1) hangs

2017-02-03 Thread Elizabeth Mattijsen
> On 3 Feb 2017, at 22:34, Brandon Allbery wrote: > > > On Fri, Feb 3, 2017 at 4:33 PM, Elizabeth Mattijsen > wrote: > Assume this is a MoarVM issue, as this does not appear to be an issue on > MoarVM. > > ...which of those was supposed to be something else? The second: there’s no problem

Re: [perl #130713] 42.expmod(-1,1) hangs

2017-02-03 Thread Brandon Allbery
On Fri, Feb 3, 2017 at 4:33 PM, Elizabeth Mattijsen < perl6-bugs-follo...@perl.org> wrote: > Assume this is a MoarVM issue, as this does not appear to be an issue on > MoarVM. ...which of those was supposed to be something else? -- brandon s allbery kf8nh sine no

[perl #130713] 42.expmod(-1,1) hangs

2017-02-03 Thread via RT
# New Ticket Created by Elizabeth Mattijsen # Please include the string: [perl #130713] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130713 > The combination of parameters -1,1 like this, causes nqp::expmod_I to hang. Assu

[perl #130711] [REGEX] `**` quantifier with dynamic count, misbehaves under `:exhaustive` matching

2017-02-03 Thread via RT
# New Ticket Created by Sam S. # Please include the string: [perl #130711] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130711 > Normally, the `**` quantifier doesn't care whether the count is specified as a literal or as an

[perl #130686] [BUG] div doesn't work right on large int values

2017-02-03 Thread Zoffix Znet via RT
On Tue, 31 Jan 2017 18:58:22 -0800, pe...@mscha.org wrote: > % perl6 > To exit type 'exit' or '^D' > > my int $i = 10**16; > 1 > > say $i; > 1 > > say $i div 4; > 468729856 > > say $i / 4; > 2500 > > This is on a 64-bit build, Rakudo Star 2017.01. T

Re: [perl #130710] Cannot use hyper operator on $_ by doing .».method

2017-02-03 Thread Samantha McVey
The second code should have been: $_ = (' a ', ' b '); .».trim.perl.say which does have the error message.

[perl #130710] Cannot use hyper operator on $_ by doing .».method

2017-02-03 Thread via RT
# New Ticket Created by Samantha McVey # Please include the string: [perl #130710] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130710 > $_ = (' a ', ' b '); $_.».trim.perl.say OUTPUT: $("a", "b") $_ = (' a ', ' b '