Searched refs:key_pos (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Modules/ |
D | _functoolsmodule.c | 751 Py_ssize_t key_size, pos, key_pos, kwds_size; in lru_cache_make_key() local 781 key_pos = 0; in lru_cache_make_key() 785 PyTuple_SET_ITEM(key, key_pos++, item); in lru_cache_make_key() 789 PyTuple_SET_ITEM(key, key_pos++, kwd_mark); in lru_cache_make_key() 792 PyTuple_SET_ITEM(key, key_pos++, keyword); in lru_cache_make_key() 794 PyTuple_SET_ITEM(key, key_pos++, value); in lru_cache_make_key() 796 assert(key_pos == PyTuple_GET_SIZE(args) + kwds_size * 2 + 1); in lru_cache_make_key() 802 PyTuple_SET_ITEM(key, key_pos++, item); in lru_cache_make_key() 808 PyTuple_SET_ITEM(key, key_pos++, item); in lru_cache_make_key() 812 assert(key_pos == key_size); in lru_cache_make_key()
|