in reply to Which "use" statements in a module do "bubble up" to the callers? [SOLVED]

What you request is non-standard behavior, hence no module should ever automatically "bubble up" two caller levels to the "grandparent" *

It's the module in the middle which could use tricks to "transport" (hopefully well documented) behavior from the used "child" module to the to the "parent" caller.

For instance taking your examples

Cheers Rolf
(addicted to the Perl Programming Language and ☆☆☆☆ :)
Je suis Charlie!

*) though it's possible, by exporting import , but doing so means mangling with the dark side, young padawan.

²) this should (?) work with all modules depending on Exporter

  • Comment on Re: Which "use" statements in a module do "bubble up" to the callers?