The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
            sub new {
                my $class = shift;
                           
                return bless { object => shift, method => shift }, $class;
            }

            sub DESTROY {
                my $self = shift;
                
                my $object = $self->{object};
                my $method = $self->{method};

                #print "close handles!";
                return $object->$method;
            }
            __PACKAGE__
        }->new($ssh2, 'disconnect');

1 POD Error

The following errors were encountered while parsing the POD:

Around line 65:

Unknown directive: =head