in reply to Packaging multiple use statements into a module

If you're using Exporter, you can use its export_to_level

Replies are listed 'Best First'.
Re^2: Packaging multiple use statements into a module
by djerius (Beadle) on Feb 09, 2010 at 16:37 UTC
    From my reading of Exporter's documentation, this would require modifications to the modules' import() routines. If a module didn't have its own import(), one could inject one into its namespace, but if it has its own one would have to tread more carefully. And, as you point out, this works only for modules which use Exporter.