(self, term)
| 359 | return v |
| 360 | |
| 361 | def remove(self, term): |
| 362 | if dict.__contains__(self, term): |
| 363 | for w in self.parents(term): |
| 364 | self[w][1].pop(term) |
| 365 | dict.pop(self, term) |
| 366 | |
| 367 | # Global taxonomy: |
| 368 | TAXONOMY = taxonomy = Taxonomy() |
no test coverage detected