| 469 | The given window, a (before, after)-tuple, specifies the size of the co-occurence window. |
| 470 | """ |
| 471 | class Sentinel(object): |
| 472 | pass |
| 473 | # Window of terms before and after the search term. |
| 474 | # Deque is more efficient than list.pop(0). |
| 475 | q = deque() |
no outgoing calls
no test coverage detected
searching dependent graphs…