Home
last modified time | relevance | path

Searched refs:AugAssign_annotations (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Python/
DPython-ast.c1473 PyObject *AugAssign_annotations = PyDict_New(); in add_ast_annotations() local
1474 if (!AugAssign_annotations) return 0; in add_ast_annotations()
1478 cond = PyDict_SetItemString(AugAssign_annotations, "target", type) == 0; in add_ast_annotations()
1481 Py_DECREF(AugAssign_annotations); in add_ast_annotations()
1488 cond = PyDict_SetItemString(AugAssign_annotations, "op", type) == 0; in add_ast_annotations()
1491 Py_DECREF(AugAssign_annotations); in add_ast_annotations()
1498 cond = PyDict_SetItemString(AugAssign_annotations, "value", type) == 0; in add_ast_annotations()
1501 Py_DECREF(AugAssign_annotations); in add_ast_annotations()
1506 AugAssign_annotations) == 0; in add_ast_annotations()
1508 Py_DECREF(AugAssign_annotations); in add_ast_annotations()
[all …]