Sets the module's verbosity, and returns the previous setting.
(self, level)
| 1425 | return last_quiet |
| 1426 | |
| 1427 | def SetVerboseLevel(self, level): |
| 1428 | """Sets the module's verbosity, and returns the previous setting.""" |
| 1429 | last_verbose_level = self.verbose_level |
| 1430 | self.verbose_level = level |
| 1431 | return last_verbose_level |
| 1432 | |
| 1433 | def SetCountingStyle(self, counting_style): |
| 1434 | """Sets the module's counting options.""" |