in reply to Inheritance confusion
my $self=Net::FTP->new(@_); bless $self,shift; local *r=*$self; %r=@_; $r{mystuff}=...; return$self; [download]
my $parent=shift; my $self=do{local *self=*$parent;\%self} [download]