(item)
| 275 | return count |
| 276 | |
| 277 | def count_neighbors_thread(item): |
| 278 | y, x, state, get_cell = item |
| 279 | try: |
| 280 | neighbors = count_neighbors(y, x, get_cell) |
| 281 | except Exception as e: |
| 282 | neighbors = e |
| 283 | return (y, x, state, neighbors) |
| 284 | |
| 285 | def game_logic_thread(item): |
| 286 | y, x, state, neighbors = item |
nothing calls this directly
no test coverage detected