Home
last modified time | relevance | path

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

/third_party/python/Modules/
D_scproxy.c107 PyTuple_SetItem(v, i, Py_None); in get_proxy_settings()
112 PyTuple_SetItem(v, i, Py_None); in get_proxy_settings()
115 PyTuple_SetItem(v, i, t); in get_proxy_settings()
Daudioop.c1451 PyTuple_SetItem(samps, chan, in audioop_ratecv_impl()
/third_party/python/Include/
Dtupleobject.h33 PyAPI_FUNC(int) PyTuple_SetItem(PyObject *, Py_ssize_t, PyObject *);
/third_party/python/Doc/includes/
Drun-func.c38 PyTuple_SetItem(pArgs, i, pValue); in main()
/third_party/python/Doc/c-api/
Dtuple.rst75 .. c:function:: int PyTuple_SetItem(PyObject *p, Py_ssize_t pos, PyObject *o)
89 Like :c:func:`PyTuple_SetItem`, but does no error checking, and should *only* be
95 :c:func:`PyTuple_SetItem`, does *not* discard a reference to any item that
Dintro.rst339 single: PyTuple_SetItem()
342 :c:func:`PyList_SetItem` and :c:func:`PyTuple_SetItem`, which steal a reference
352 PyTuple_SetItem(t, 0, PyLong_FromLong(1L));
353 PyTuple_SetItem(t, 1, PyLong_FromLong(2L));
354 PyTuple_SetItem(t, 2, PyUnicode_FromString("three"));
357 stolen by :c:func:`PyTuple_SetItem`. When you want to keep using an object
361 Incidentally, :c:func:`PyTuple_SetItem` is the *only* way to set tuple items;
364 :c:func:`PyTuple_SetItem` for tuples that you are creating yourself.
Dset.rst134 instances (like :c:func:`PyTuple_SetItem` it can be used to fill-in the values
/third_party/python/Modules/_sqlite/
Dcursor.c492 if (PyTuple_SetItem(func_args, 0, Py_NewRef(operation)) != 0) { in _pysqlite_query_execute()
/third_party/python/Doc/data/
Drefcounts.dat2272 PyTuple_SetItem:int:::
2273 PyTuple_SetItem:PyObject*:p:0:
2274 PyTuple_SetItem:Py_ssize_t:pos::
2275 PyTuple_SetItem:PyObject*:o:0:
Dstable_abi.dat633 function,PyTuple_SetItem,3.2,
/third_party/python/Objects/
Dtupleobject.c194 PyTuple_SetItem(PyObject *op, Py_ssize_t i, PyObject *newitem) in PyTuple_SetItem() function
/third_party/python/PC/
Dpython3dll.c588 EXPORT_FUNC(PyTuple_SetItem)
/third_party/python/Misc/
Dstable_abi.txt1274 function PyTuple_SetItem
DHISTORY30278 - tupleobject.c: PyTuple_SetItem asserts refcnt==1
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c1481 PyTuple_SetItem(data->newargs, 0, obj); in SwigPyClientData_New()
1560 if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) { in SwigPyObject_format()
/third_party/python/Doc/extending/
Dextending.rst988 important exceptions to this rule: :c:func:`PyTuple_SetItem` and