Set up the initial state of the singleton. Called only when the first instance is created.
(self)
| 55 | return cls._instance |
| 56 | |
| 57 | def _init(self): |
| 58 | """ |
| 59 | Set up the initial state of the singleton. Called only when the first |
| 60 | instance is created. |
| 61 | """ |
| 62 | self._master_verbosity = -1 |
| 63 | self._cvars = {} |
| 64 | |
| 65 | @classmethod |
| 66 | def reset(cls): |