(self, term)
| 269 | self.classifiers = [] |
| 270 | |
| 271 | def _normalize(self, term): |
| 272 | try: |
| 273 | return not self.case_sensitive and term.lower() or term |
| 274 | except: # Not a string. |
| 275 | return term |
| 276 | |
| 277 | def __contains__(self, term): |
| 278 | # Check if the term is in the dictionary. |