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