[perl #126557] Fancy ‘’ quotes in rules

2015-11-03 Thread Larry Wall via RT
Fixed in 36a35142a0b7dadd65a5b09bcba7f460845ae3e9 Tests in 2ccb4443d61efd053419239203106e5636b021ce and 7cd9f97ccdad6299c3b6dc4d4b071c6580c0b66c

[perl #126561] .exitcode is 0 if .out is not closed (Proc)

2015-11-03 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #126561] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126561 > First of all, let's look at the code that works: my $p = run 'bash', '-c', 'exit 5'; sa

[perl #126559] [BUG] Grammar parse failure should probably return Nil not Any

2015-11-03 Thread via RT
# New Ticket Created by Ron Schmidt # Please include the string: [perl #126559] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126559 > According to the docs: http://docs.perl6.org/type/Grammar#method_parse "Method parse ... R

[perl #126557] Fancy ‘’ quotes in rules

2015-11-03 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #126557] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126557 > This works: my $foo = ‘hello’ But this doesn't (Unrecognized regex metacharacter ‘): m

Re: [perl #126551] [BUG] Segfault on EXPORT returning Hash in weird circumstance

2015-11-03 Thread Nicholas Clark
On Tue, Nov 03, 2015 at 05:31:40PM +, Nicholas Clark wrote: > Not a NULL pointer dereference. A more serious bug than that. Also present with MoarVM/NQP/Rakudo at 47bb37e Include \r\n synthetic in default separators. 7710de0 Fix thinko in \r\n -> grapheme prep. 385850b Streamline Range.itera

Re: [perl #126551] [BUG] Segfault on EXPORT returning Hash in weird circumstance

2015-11-03 Thread Nicholas Clark
On Tue, Nov 03, 2015 at 04:18:44AM -0800, Lloyd Fournier wrote: > # New Ticket Created by Lloyd Fournier > # Please include the string: [perl #126551] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=126551 > > > > # Exporte

[perl #125927] नि -- a grapheme cluster boundary algo problem (CCC = 0 can be a valid combiner?)

2015-11-03 Thread jn...@jnthn.net via RT
On Thu Aug 27 16:37:21 2015, raiph wrote: > jnthn++ and others are busy with work that is far more important and > urgent than dealing with this right now. I'm filing this bug now > because there are reasons to consider addressing it before christmas > as explained below. > > What I did >

[perl #126551] [BUG] Segfault on EXPORT returning Hash in weird circumstance

2015-11-03 Thread via RT
# New Ticket Created by Lloyd Fournier # Please include the string: [perl #126551] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126551 > # Exporter1.pm multi foo { } sub EXPORT { Hash.new('&foo' => &foo) #Map.new doesn'

[perl #126547] [BUG] Cannot export trait_mod: if NativeCall is used in precompiled module

2015-11-03 Thread via RT
# New Ticket Created by cygx # Please include the string: [perl #126547] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126547 > Specificall, given this Foo.pm use NativeCall; multi trait_mod:(Routine $r, :$foo!) is e

Re: [perl #125908] AutoReply: [BUG] duplicate triggers of .act when using parallel greps on an IO::Notification.watch_path supply

2015-11-03 Thread Erik Ferguson
A better description for this bug, now that I have a better idea of what is going on, is "two acts on one supply cause each act to be evaluated twice". :) In Reactive Extensions with cold observables, I could see this occurring. But it isn't clear to me from the concurrency design document th

[perl #126550] The Seq returned from RANGE.roll(*) does not know it's infinite

2015-11-03 Thread via RT
# New Ticket Created by Sam S. # Please include the string: [perl #126550] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126550 > These works fine: my @a = Bool.roll(*); my @b = (2, 4, 6).roll(*); This hangs indefin

[perl #126549] [BUG] Importing multi in lexical scope clobbers the multi

2015-11-03 Thread via RT
# New Ticket Created by Lloyd Fournier # Please include the string: [perl #126549] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126549 > # MultiModule.pm multi sub foo (Str) { } # main.pl multi sub foo (Int) { } { use