in reply to Re^2: Saving HTTP::Cookies into Netscape format using bless/re-bless
in thread Saving HTTP::Cookies into Netscape format using bless/re-bless
Actually, these behave differently:
Some::Class::method( $obj, @args ); $obj->Some::Class::method( @args );
If Some::Class doesn't contain a sub called method, the former will fail, but the latter will walk Some::Class's @ISA.
In Section
Meditations