Sets the module's verbosity, and returns the previous setting.
(self, level)
| 1296 | return last_quiet |
| 1297 | |
| 1298 | def SetVerboseLevel(self, level): |
| 1299 | """Sets the module's verbosity, and returns the previous setting.""" |
| 1300 | last_verbose_level = self.verbose_level |
| 1301 | self.verbose_level = level |
| 1302 | return last_verbose_level |
| 1303 | |
| 1304 | def SetCountingStyle(self, counting_style): |
| 1305 | """Sets the module's counting options.""" |