http://qs321.pair.com?node_id=1051133

citromatik has asked for the wisdom of the Perl Monks concerning the following question:

Is there a way to prevent a warning message produced in a module from a client script? i.e. something like this:

use RandomModule; { no warnings; RandomModule::doSomethingThatCanGenerateWarnings(); }

RandomModule uses "use warnings"

citromatik