Sets the module's verbosity, and returns the previous setting.
(self, level)
| 1465 | return last_quiet |
| 1466 | |
| 1467 | def SetVerboseLevel(self, level): |
| 1468 | """Sets the module's verbosity, and returns the previous setting.""" |
| 1469 | last_verbose_level = self.verbose_level |
| 1470 | self.verbose_level = level |
| 1471 | return last_verbose_level |
| 1472 | |
| 1473 | def SetCountingStyle(self, counting_style): |
| 1474 | """Sets the module's counting options.""" |