Sets the module's verbosity, and returns the previous setting.
(self, level)
| 894 | return last_quiet |
| 895 | |
| 896 | def SetVerboseLevel(self, level): |
| 897 | """Sets the module's verbosity, and returns the previous setting.""" |
| 898 | last_verbose_level = self.verbose_level |
| 899 | self.verbose_level = level |
| 900 | return last_verbose_level |
| 901 | |
| 902 | def SetCountingStyle(self, counting_style): |
| 903 | """Sets the module's counting options.""" |