Sets the module's verbosity, and returns the previous setting.
(self, level)
| 709 | self.output_format = output_format |
| 710 | |
| 711 | def SetVerboseLevel(self, level): |
| 712 | """Sets the module's verbosity, and returns the previous setting.""" |
| 713 | last_verbose_level = self.verbose_level |
| 714 | self.verbose_level = level |
| 715 | return last_verbose_level |
| 716 | |
| 717 | def SetCountingStyle(self, counting_style): |
| 718 | """Sets the module's counting options.""" |