From: chromatic Date: Thu, 17 Jan 2002 13:04:22 +0000 (-0700) Subject: One TODO is TODONE X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b0b7f28375c7638acfa4e056837b6cb251e293a9;p=p5sagit%2Fp5-mst-13.2.git One TODO is TODONE Message-ID: <20020117200557.98720.qmail@onion.perl.org> p4raw-id: //depot/perl@14319 --- diff --git a/pod/perltodo.pod b/pod/perltodo.pod index b09ad22..afc45f1 100644 --- a/pod/perltodo.pod +++ b/pod/perltodo.pod @@ -571,16 +571,6 @@ With C, you can attach the debugger to a running program if you pass the process ID. It would be good to do this with the Perl debugger on a running Perl program, although I'm not sure how it would be done. -=head2 Alternative RE syntax module - - use Regex::Newbie; - $re = Regex::Newbie->new - ->start - ->match("foo") - ->repeat(Regex::Newbie->class("char"),3) - ->end; - /$re/; - =head2 GUI::Native A non-core module that would use "native" GUI to create graphical @@ -623,6 +613,23 @@ The code we ship with Perl should look like good Perl 5. These are things which have been on the todo lists in previous releases but have recently been completed. +=head2 Alternative RE syntax module + +The C module, available from the CPAN, provides this: + + my $re = Regexp::English + -> start_of_line + -> literal('Flippers') + -> literal(':') + -> optional + -> whitespace_char + -> end + -> remember + -> multiple + -> digit; + + /$re/; + =head2 Safe signal handling A new signal model went into 5.7.1 without much fanfare. Operations and