Regen toc and modlib.
Jarkko Hietaniemi [Mon, 25 Jun 2001 14:17:57 +0000 (14:17 +0000)]
p4raw-id: //depot/perl@10929

pod/perlmodlib.pod
pod/perltoc.pod

index 109c277..fbd3686 100644 (file)
@@ -870,6 +870,14 @@ Provides a simple framework for writing test scripts
 
 Run perl standard test scripts with statistics
 
+=item Test::More
+
+Yet another framework for writing test scripts
+
+=item Test::Simple
+
+Basic utilities for writing tests.
+
 =item Text::Abbrev
 
 Create an abbreviation table from a list
@@ -894,6 +902,26 @@ Expand and unexpand tabs per the unix expand(1) and unexpand(1)
 
 Line wrapping to form simple paragraphs
 
+=item Thread
+
+Manipulate threads in Perl (EXPERIMENTAL, subject to change)
+
+=item Thread::Queue
+
+Thread-safe queues
+
+=item Thread::Semaphore
+
+Thread-safe semaphores
+
+=item Thread::Signal
+
+Start a thread which runs signal handlers reliably
+
+=item Thread::Specific
+
+Thread-specific keys
+
 =item Tie::Array
 
 Base class for tied arrays
index 86c7676..3c03620 100644 (file)
@@ -4087,7 +4087,7 @@ PerlIO_apply_layers(f,mode,layers), PerlIO_binmode(f,ptype,imode,layers),
 
 =item Eliminate need for "use utf8";
 
-=item Create a char *sv_printify(sv, STRLEN *lenp, UV flags) function
+=item Create a char *sv_printify(sv, STRLEN *lenp, UV flags)
 
 =item Autoload byte.pm
 
@@ -7340,7 +7340,7 @@ warnings::warnif($object, $message)
 
 =item DESCRIPTION
 
-[0], [1], [2], [3], [4]
+[0], [1], [2], [3], [4], [5]
 
 =over 4
 
@@ -7350,6 +7350,8 @@ warnings::warnif($object, $message)
 
 =item Non-interpretive attribute handlers
 
+=item Phase-specific attribute handlers
+
 =item Attributes as C<tie> interfaces
 
 =back
@@ -7358,6 +7360,11 @@ warnings::warnif($object, $message)
 
 =item DIAGNOSTICS
 
+C<Bad attribute type: ATTR(%s)>, C<Attribute handler %s doesn't handle %s
+attributes>, C<Declaration of %s attribute in package %s may clash with
+future reserved word>, C<Can't have two ATTR specifiers on one subroutine>,
+C<Can't autotie a %s>, C<Internal error: %s symbol went missing>
+
 =item AUTHOR
 
 =item BUGS
@@ -12511,6 +12518,8 @@ C<MEMORY>, C<HASH>, C<TIE>, C<FAULT>, C<MERGE>
 
 =item AUTHOR
 
+=item COPYRIGHT AND LICENSE
+
 =item THANK YOU
 
 =back
@@ -15091,6 +15100,111 @@ C<HARNESS_ACTIVE>
 
 =back
 
+=head2 Test::More - yet another framework for writing test scripts
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+=over 4
+
+=item I love it when a plan comes together
+
+=item Test names
+
+=item I'm ok, you're not ok.
+
+B<ok>
+
+=back
+
+=back
+
+B<is>, B<isnt>
+
+B<like>
+
+B<pass>, B<fail>
+
+=over 4
+
+=item Module tests
+
+B<use_ok>, B<require_ok>
+
+=back
+
+=over 4
+
+=item Conditional tests
+
+B<skip>   * UNIMPLEMENTED *
+
+=back
+
+B<todo>  * UNIMPLEMENTED *
+
+=over 4
+
+=item Comparision functions
+
+B<eq_array>
+
+=back
+
+B<eq_hash>
+
+B<eq_set>
+
+=over 4
+
+=item BUGS and CAVEATS
+
+=item AUTHOR
+
+=item HISTORY
+
+=item SEE ALSO
+
+=back
+
+=head2 Test::Simple - Basic utilities for writing tests.
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+B<ok>
+
+=back
+
+B<_sanity_check>
+
+B<_whoa>
+
+B<_my_exit>
+
+=over 4
+
+=item EXAMPLE
+
+=item CAVEATS
+
+=item HISTORY
+
+=item AUTHOR
+
+=item SEE ALSO
+
+L<Test::More>, L<Test>, L<Test::Unit>, L<Pod::Tests>, L<SelfTest>,
+L<Test::Harness>
+
+=back
+
 =head2 Text::Abbrev, abbrev - create an abbreviation table from a list
 
 =over 4