/third_party/python/Doc/c-api/ |
D | mapping.rst | 8 See also :c:func:`PyObject_GetItem`, :c:func:`PyObject_SetItem` and 40 See also :c:func:`PyObject_SetItem`. This function *does not* steal a
|
D | intro.rst | 362 :c:func:`PySequence_SetItem` and :c:func:`PyObject_SetItem` refuse to do this 380 It is much more common to use :c:func:`PyObject_SetItem` and friends with items 399 if (PyObject_SetItem(target, index, item) < 0) { 620 if (PyObject_SetItem(dict, key, incremented_item) < 0)
|
D | object.rst | 330 .. c:function:: int PyObject_SetItem(PyObject *o, PyObject *key, PyObject *v)
|
D | typeobj.rst | 2219 This function is used by :c:func:`PyObject_SetItem`, 2222 :c:func:`!PyObject_SetItem`, but *v* can also be set to ``NULL`` to delete 2275 signature. It is also used by :c:func:`PyObject_SetItem` and
|
/third_party/python/Objects/ |
D | odictobject.c | 1037 else if (PyObject_SetItem((PyObject *)self, key, default_value) >= 0) { in OrderedDict_setdefault_impl() 1270 res = PyObject_SetItem((PyObject *)od_copy, in odict_copy() 2228 res = PyObject_SetItem(self, key, value); in mutablemapping_add_pairs() 2279 res = PyObject_SetItem(self, key, value); in mutablemapping_update_arg()
|
D | weakrefobject.c | 633 res = PyObject_SetItem(obj, key, value); in WRAP_BINARY()
|
D | frameobject.c | 952 if (PyObject_SetItem(dict, key, value) != 0) in map_to_dict()
|
D | abstract.c | 201 PyObject_SetItem(PyObject *o, PyObject *key, PyObject *value) in PyObject_SetItem() function 2379 r = PyObject_SetItem(o, okey, value); in PyMapping_SetItemString()
|
D | dictobject.c | 2035 status = PyObject_SetItem(d, key, value); in _PyDict_FromKeys()
|
/third_party/python/Python/ |
D | import.c | 307 return PyObject_SetItem(modules, name, m); in _PyImport_SetModule() 436 if (PyObject_SetItem(modules, name, mod) < 0) { in _PyImport_FixupExtensionObject() 542 if (PyObject_SetItem(modules, name, mod) == -1) { in import_find_extension() 616 if (PyObject_SetItem(modules, name, m) != 0) { in import_add_module()
|
D | ceval.c | 2372 err = PyObject_SetItem(container, sub, v); in _PyEval_EvalFrameDefault() 2772 err = PyObject_SetItem(ns, name, v); in _PyEval_EvalFrameDefault() 3313 err = PyObject_SetItem(f->f_locals, ann_str, ann_dict); in _PyEval_EvalFrameDefault() 6168 err = PyObject_SetItem(locals, name, value); in import_all_from()
|
D | pylifecycle.c | 1370 if (PyObject_SetItem(modules, name, Py_None) < 0) { \ in finalize_remove_modules()
|
/third_party/python/Include/ |
D | abstract.h | 297 PyAPI_FUNC(int) PyObject_SetItem(PyObject *o, PyObject *key, PyObject *v);
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 1794 PyObject_SetItem:int::: 1795 PyObject_SetItem:PyObject*:o:0: 1796 PyObject_SetItem:PyObject*:key:0: 1797 PyObject_SetItem:PyObject*:v:+1:
|
D | stable_abi.dat | 518 function,PyObject_SetItem,3.2,
|
/third_party/python/PC/ |
D | python3dll.c | 474 EXPORT_FUNC(PyObject_SetItem)
|
/third_party/python/Modules/ |
D | _collectionsmodule.c | 2011 if (PyObject_SetItem((PyObject *)dd, key, value) < 0) { in defdict_missing() 2399 if (PyObject_SetItem(mapping, key, newval) < 0) in _collections__count_elements_impl()
|
D | _operator.c | 553 if (-1 == PyObject_SetItem(a, b, c)) in _operator_setitem_impl()
|
D | _pickle.c | 6556 if (PyObject_SetItem(dict, key, value) < 0) { in do_setitems() 6710 if (PyObject_SetItem(dict, d_key, d_value) < 0) { in load_build()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a4.rst | 663 PyObject_SetItem - PyMapping_SetItemString - PyDict_SetItem -
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1117 function PyObject_SetItem
|
/third_party/python/Doc/whatsnew/ |
D | 2.5.rst | 1733 ctypes.pythonapi.PyObject_SetItem(ctypes.py_object(d),
|