in reply to Re^2: reloading of module
in thread reloading of module

Try this, but do _not_ delete $INC{xx} if you use this module.
# somewhere at the top my $refresher = Module::Refresher->new; .... { no warnings 'redefine'; $refresher->refresh_module('module_name'); }
Boris