diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-10-20 05:22:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 05:22:44 (GMT) |
commit | 109826c8508dd02e06ae0f1784f1d202495a8680 (patch) | |
tree | 75b1dd3041d325b379cf50d2ebc5f6ce968fc151 /Include/cpython/dictobject.h | |
parent | 871934d4cf00687b3d1411c6e344af311646c1ae (diff) | |
download | cpython-109826c8508dd02e06ae0f1784f1d202495a8680.zip cpython-109826c8508dd02e06ae0f1784f1d202495a8680.tar.gz cpython-109826c8508dd02e06ae0f1784f1d202495a8680.tar.bz2 |
bpo-42093: Add opcode cache for LOAD_ATTR (GH-22803)
Diffstat (limited to 'Include/cpython/dictobject.h')
-rw-r--r-- | Include/cpython/dictobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/cpython/dictobject.h b/Include/cpython/dictobject.h index 5a15630..f67c321 100644 --- a/Include/cpython/dictobject.h +++ b/Include/cpython/dictobject.h @@ -71,6 +71,7 @@ PyAPI_FUNC(void) _PyDict_DebugMallocStats(FILE *out); int _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr, PyObject *name, PyObject *value); PyObject *_PyDict_LoadGlobal(PyDictObject *, PyDictObject *, PyObject *); +Py_ssize_t _PyDict_GetItemHint(PyDictObject *, PyObject *, Py_ssize_t, PyObject **); /* _PyDictView */ |