X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperltie.pod;h=0c55c6a4d572509a38de4dc66db96ab6cdb018ee;hb=7817ba4dfeb754838a0da8f159127895c2dcf4fc;hp=60df0cb23ea257df2ce9c6d372d4e8dc91114ab4;hpb=301e812593b886ce092a67093cee831022be6f82;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perltie.pod b/pod/perltie.pod index 60df0cb..0c55c6a 100644 --- a/pod/perltie.pod +++ b/pod/perltie.pod @@ -71,7 +71,7 @@ calls. Here's the preamble of the class. use strict; $Nice::DEBUG = 0 unless defined $Nice::DEBUG; -=over +=over 4 =item TIESCALAR classname, LIST @@ -225,7 +225,7 @@ The preamble code for the class is as follows: use Carp; use strict; -=over +=over 4 =item TIEARRAY classname, LIST @@ -400,7 +400,7 @@ that calls it. Here are the methods for the DotFiles tied hash. -=over +=over 4 =item TIEHASH classname, LIST @@ -655,7 +655,7 @@ In our example we're going to create a shouting handle. package Shout; -=over +=over 4 =item TIEHANDLE classname, LIST @@ -925,6 +925,9 @@ module that does attempt to address this need partially is the MLDBM module. Check your nearest CPAN site as described in L for source code to MLDBM. +Tied filehandles are still incomplete. sysopen(), truncate(), +flock(), fcntl(), stat() and -X can't currently be trapped. + =head1 AUTHOR Tom Christiansen