summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/PerlIO/scalar.pm
diff options
context:
space:
mode:
authorSiep Kroonenberg <siepo@cybercomm.nl>2011-02-17 12:20:49 +0000
committerSiep Kroonenberg <siepo@cybercomm.nl>2011-02-17 12:20:49 +0000
commit316ee97c621496b0fe3267f57cce81bee44ca1e6 (patch)
treecb2cab1192b4f58a7971af19b213e980bceda4b4 /Master/tlpkg/tlperl/lib/PerlIO/scalar.pm
parentcd0f87b5d39480d85ad9bd4ee37f520f75bed560 (diff)
Moving old tlperl prior to committing new one
git-svn-id: svn://tug.org/texlive/trunk@21422 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/PerlIO/scalar.pm')
-rwxr-xr-xMaster/tlpkg/tlperl/lib/PerlIO/scalar.pm41
1 files changed, 0 insertions, 41 deletions
diff --git a/Master/tlpkg/tlperl/lib/PerlIO/scalar.pm b/Master/tlpkg/tlperl/lib/PerlIO/scalar.pm
deleted file mode 100755
index 5188ddbc3c9..00000000000
--- a/Master/tlpkg/tlperl/lib/PerlIO/scalar.pm
+++ /dev/null
@@ -1,41 +0,0 @@
-package PerlIO::scalar;
-our $VERSION = '0.07';
-use XSLoader ();
-XSLoader::load 'PerlIO::scalar';
-1;
-__END__
-
-=head1 NAME
-
-PerlIO::scalar - in-memory IO, scalar IO
-
-=head1 SYNOPSIS
-
- my $scalar = '';
- ...
- open my $fh, "<", \$scalar or die;
- open my $fh, ">", \$scalar or die;
- open my $fh, ">>", \$scalar or die;
-
-or
-
- my $scalar = '';
- ...
- open my $fh, "<:scalar", \$scalar or die;
- open my $fh, ">:scalar", \$scalar or die;
- open my $fh, ">>:scalar", \$scalar or die;
-
-=head1 DESCRIPTION
-
-A filehandle is opened but the file operations are performed "in-memory"
-on a scalar variable. All the normal file operations can be performed
-on the handle. The scalar is considered a stream of bytes. Currently
-fileno($fh) returns -1.
-
-=head1 IMPLEMENTATION NOTE
-
-C<PerlIO::scalar> only exists to use XSLoader to load C code that
-provides support for treating a scalar as an "in memory" file.
-One does not need to explicitly C<use PerlIO::scalar>.
-
-=cut