[perl #127867] LTA behavior when passing garbage with -M command line option (perl6 -M $'\0')

2016-04-09 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #127867] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127867 > Let's pass null byte! Command: perl6 -M $'\0' -e 'say 42' Result: ===SORRY!=== Cannot

[perl #118505] [JVM] Null PMC access when declaring constant for export twice

2016-04-09 Thread Christian Bartolomaeus via RT
There is no NullPointerException in the REPL anymore: $ perl6-j To exit type 'exit' or '^D' > constant %a is export = 5 => 5; constant %a is export = 5 => 5 ===SORRY!=== Error while compiling Redeclaration of symbol %a at :2 --> ⏏ > I'm closing this ticket as 'resolved'.

Re: [perl #127866] [IMPROVEMENT] Make lone `No` category type characters in Str convert to Int properly

2016-04-09 Thread Elizabeth Mattijsen
Fixed with 1cb2e8d9e71797f576b3 > On 09 Apr 2016, at 20:32, Zoffix Znet (via RT) > wrote: > > # New Ticket Created by Zoffix Znet > # Please include the string: [perl #127866] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?

[perl #126527] [JVM] [GLR] squish failure

2016-04-09 Thread Christian Bartolomaeus via RT
On Fri Apr 08 05:51:16 2016, pesc...@gmail.com wrote: > > This has been fixed in Rakudo commit ec52cce: > $ ./perl6-j --version > This is Rakudo version 2016.03-99-g46388f4 built on JVM > implementing Perl 6.c. > $ ./perl6-j -e'[[2,3],[4,[5,6]]]>>.squish.say' > ((2 3) (4 [5 6])) Great. I unfudged

[perl #127866] [IMPROVEMENT] Make lone `No` category type characters in Str convert to Int properly

2016-04-09 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #127866] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127866 > There are numerous No characters that may be entered, say, by a user being asked for nume

[perl #125577] [JVM] attribute of cloned object becomes Parcel instead of Array and Pair instead of Hash

2016-04-09 Thread Christian Bartolomaeus via RT
On Fri Apr 08 05:56:54 2016, pesc...@gmail.com wrote: > > This was fixed in rakudo commit 0c78181 and the test file now passes > on R-J. Thanks a lot! I'm closing this ticket as 'resolved'.

[perl #127865] Throwing a control exception within Lock.protect causes LTA locking behavior

2016-04-09 Thread via RT
# New Ticket Created by Rob Hoelz # Please include the string: [perl #127865] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127865 > If I have a control exception within a Lock.protect, the lock in question is still in a loc

Re: [perl #127860] [BUG][PRECOMP] Wrapped method fails when precompiled

2016-04-09 Thread Lloyd Fournier
For reference this is another related to: https://rt.perl.org/Public/Bug/Display.html?id=125634 On Sat, Apr 9, 2016 at 7:10 AM Jonathan Stowe wrote: > # New Ticket Created by Jonathan Stowe > # Please include the string: [perl #127860] > # in the subject line of all future correspondence abou

[perl #127864] Strange MAIN positional string interpolations

2016-04-09 Thread Pepe Schwarz via RT
>S19 specifies s/specifies/speculated/ ... :)

[perl #127864] Strange MAIN positional string interpolations

2016-04-09 Thread Pepe Schwarz via RT
On Fri Apr 08 19:39:49 2016, madcap.russo...@gmail.com wrote: > From IRC: > 9:22 PM if I pass a : at the beginning of a string > argument to MAIN, it fails to match any signatures and triggers the > Usage message > 9:25 PM MadcapJake, can't reproduce. What's the sig for > MAIN you're using and wh

Re: [perl #127856] LTA error message when declaring variables without a space between “my” and parens (my($test);)

2016-04-09 Thread JuhiMarcel LangbroekTimmerman
Hi My previous interpretation of the error was wrong, its just about a function called my having an argument $test which is not declared. The if(1) gave another message becaouse 1 was parsed and evaluated right, but try if($test) and it should give the same error. Regards, Marcel On April