/usr/share/perl5/Mason/TieHandle.pm is in libmason-perl 2.19-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | package Mason::TieHandle;
BEGIN {
$Mason::TieHandle::VERSION = '2.19';
}
use strict;
use warnings;
sub TIEHANDLE {
my $class = shift;
return bless {}, $class;
}
sub PRINT {
my $self = shift;
# TODO - why do we need to select STDOUT here?
my $old = select STDOUT;
$Mason::Request::current_request->print(@_);
select $old;
}
sub PRINTF {
my $self = shift;
# apparently sprintf(@_) won't work, it needs to be a scalar
# followed by a list
$self->PRINT( sprintf( shift, @_ ) );
}
1;
|