Clear all previously defined abbreviations.
(self)
| 54 | self.glossary = {} |
| 55 | |
| 56 | def reset(self): |
| 57 | """ Clear all previously defined abbreviations. """ |
| 58 | self.abbrs.clear() |
| 59 | if (self.glossary): |
| 60 | self.abbrs.update(self.glossary) |
| 61 | |
| 62 | def reset_glossary(self): |
| 63 | """ Clear all abbreviations from the glossary. """ |
nothing calls this directly
no outgoing calls
no test coverage detected