(lst, indices)
| 479 | return 0 <= offset+imin and offset+imax+itemsize <= memlen |
| 480 | |
| 481 | def get_item(lst, indices): |
| 482 | for i in indices: |
| 483 | lst = lst[i] |
| 484 | return lst |
| 485 | |
| 486 | def memory_index(indices, t): |
| 487 | """Location of an item in the underlying memory.""" |
no outgoing calls
no test coverage detected
searching dependent graphs…