Sets the module's verbosity, and returns the previous setting.
(self, level)
| 1285 | return last_quiet |
| 1286 | |
| 1287 | def SetVerboseLevel(self, level): |
| 1288 | """Sets the module's verbosity, and returns the previous setting.""" |
| 1289 | last_verbose_level = self.verbose_level |
| 1290 | self.verbose_level = level |
| 1291 | return last_verbose_level |
| 1292 | |
| 1293 | def SetCountingStyle(self, counting_style): |
| 1294 | """Sets the module's counting options.""" |