summaryrefslogtreecommitdiff
path: root/pod/perltodo.pod
diff options
context:
space:
mode:
authorchromatic <chromatic@wgz.org>2002-01-17 06:04:22 -0700
committerJarkko Hietaniemi <jhi@iki.fi>2002-01-17 22:43:12 +0000
commitb0b7f28375c7638acfa4e056837b6cb251e293a9 (patch)
treec3e6dcde19ba832f8395ea4840c4d11cb28350c9 /pod/perltodo.pod
parentc2b853aa60487b0bf60ca64ff080507e7e28c642 (diff)
downloadperl-b0b7f28375c7638acfa4e056837b6cb251e293a9.tar.gz
One TODO is TODONE
Message-ID: <20020117200557.98720.qmail@onion.perl.org> p4raw-id: //depot/perl@14319
Diffstat (limited to 'pod/perltodo.pod')
-rw-r--r--pod/perltodo.pod27
1 files changed, 17 insertions, 10 deletions
diff --git a/pod/perltodo.pod b/pod/perltodo.pod
index b09ad22918..afc45f1dd3 100644
--- a/pod/perltodo.pod
+++ b/pod/perltodo.pod
@@ -571,16 +571,6 @@ With C<gdb>, 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<Regexp::English> 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