Add keyword dictionaries. Keywords are looked up in the same order that dictionaries were added.
(self, keywords)
| 87 | ] |
| 88 | |
| 89 | def add_keywords(self, keywords): |
| 90 | """Add keyword dictionaries. Keywords are looked up in the same order |
| 91 | that dictionaries were added.""" |
| 92 | self._keywords.append(keywords) |
| 93 | |
| 94 | def is_keyword(self, value): |
| 95 | """Checks for a keyword. |
no outgoing calls