Searched refs:item_key (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
D | codeobject.c | 484 PyObject *item, *item_key; in _PyCode_ConstantKey() local 487 item_key = _PyCode_ConstantKey(item); in _PyCode_ConstantKey() 488 if (item_key == NULL) { in _PyCode_ConstantKey() 493 PyTuple_SET_ITEM(tuple, i, item_key); in _PyCode_ConstantKey() 513 PyObject *item_key; in _PyCode_ConstantKey() local 515 item_key = _PyCode_ConstantKey(item); in _PyCode_ConstantKey() 516 if (item_key == NULL) { in _PyCode_ConstantKey() 522 PyTuple_SET_ITEM(tuple, i, item_key); in _PyCode_ConstantKey()
|
/external/python/cpython3/Objects/ |
D | codeobject.c | 536 PyObject *item, *item_key; in _PyCode_ConstantKey() local 539 item_key = _PyCode_ConstantKey(item); in _PyCode_ConstantKey() 540 if (item_key == NULL) { in _PyCode_ConstantKey() 545 PyTuple_SET_ITEM(tuple, i, item_key); in _PyCode_ConstantKey() 565 PyObject *item_key; in _PyCode_ConstantKey() local 567 item_key = _PyCode_ConstantKey(item); in _PyCode_ConstantKey() 568 if (item_key == NULL) { in _PyCode_ConstantKey() 574 PyTuple_SET_ITEM(tuple, i, item_key); in _PyCode_ConstantKey()
|