Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dodictobject.h30 #define PyODict_GetItem(od, key) PyDict_GetItem(_PyObject_CAST(od), key)
/third_party/python/Include/
Ddictobject.h22 PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);
/third_party/python/Doc/c-api/
Ddict.rst96 .. c:function:: PyObject* PyDict_GetItem(PyObject *p, PyObject *key)
112 Variant of :c:func:`PyDict_GetItem` that does not suppress
120 This is the same as :c:func:`PyDict_GetItem`, but *key* is specified as a
/third_party/python/PC/
Dpython3dll.c171 EXPORT_FUNC(PyDict_GetItem)
/third_party/python/Doc/data/
Dstable_abi.dat105 function,PyDict_GetItem,3.2,
Drefcounts.dat511 PyDict_GetItem:PyObject*::0:
512 PyDict_GetItem:PyObject*:p:0:
513 PyDict_GetItem:PyObject*:key:0:
/third_party/protobuf/python/google/protobuf/pyext/
Ddescriptor_containers.cc406 PyObject* value2 = PyDict_GetItem(other, key.get()); in DescriptorMapping_Equal()
Dmessage.cc222 PyObject* descriptor_or_name = PyDict_GetItem(dict, kDESCRIPTOR); in New()
/third_party/python/Modules/
D_hashopenssl.c386 name_obj = PyDict_GetItem(state->constructs, digestmod); in py_digest_by_digestmod()
/third_party/python/Misc/
Dstable_abi.txt478 function PyDict_GetItem
DHISTORY18024 ``PyDict_GetItem()``, whose semantics did not change).
29257 - PyDict_GetItem() and PyDict_GetItemString() are changed so that they
/third_party/python/Objects/
Ddictobject.c1398 PyDict_GetItem(PyObject *op, PyObject *key) in PyDict_GetItem() function
3590 rv = PyDict_GetItem(v, kv); in PyDict_GetItemString()
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c2292 obj = dict ? PyDict_GetItem(dict, SWIG_This()) : 0; in SWIG_Python_GetSwigThis()
2802 PyObject *obj = PyDict_GetItem(cache, key); in SWIG_Python_TypeQuery()
/third_party/python/Misc/NEWS.d/
D3.10.0a1.rst3455 Calling :c:func:`PyDict_GetItem` without :term:`GIL` held had been allowed
/third_party/python/Doc/extending/
Dextending.rst977 :c:func:`PyTuple_GetItem`, :c:func:`PyList_GetItem`, :c:func:`PyDict_GetItem`, and
/third_party/python/Doc/whatsnew/
D3.10.rst2153 * Calling :c:func:`PyDict_GetItem` without :term:`GIL` held had been allowed