(self, word, default=None)
| 513 | def __getitem__(self, word): |
| 514 | return self.terms.__getitem__(word) |
| 515 | def get(self, word, default=None): |
| 516 | return self.terms.get(word, default) |
| 517 | |
| 518 | def term_frequency(self, word): |
| 519 | """ Returns the term frequency of a given word in the document (0.0-1.0). |
no outgoing calls
no test coverage detected