Skip to content

Commit

Permalink
Borrow _PyDict_LoadGlobal
Browse files Browse the repository at this point in the history
Reviewed By: alexmalyshev

Differential Revision: D60605427

fbshipit-source-id: 7c8181eda76135ce04aff488842fce54068a936f
  • Loading branch information
jbower-fb authored and facebook-github-bot committed Aug 5, 2024
1 parent b3cfd1e commit 9c2a52e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/cpython/dictobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ PyAPI_FUNC(int) _PyDict_DelItemId(PyObject *mp, struct _Py_Identifier *key);
PyAPI_FUNC(void) _PyDict_DebugMallocStats(FILE *out);

int _PyObjectDict_SetItem(PyTypeObject *tp, PyObject **dictptr, PyObject *name, PyObject *value);
CiAPI_FUNC(PyObject *) _PyDict_LoadGlobal(PyDictObject *, PyDictObject *, PyObject *);
PyObject * _PyDict_LoadGlobal(PyDictObject *, PyDictObject *, PyObject *);
Py_ssize_t _PyDict_GetItemHint(PyDictObject *, PyObject *, Py_ssize_t, PyObject **);

/* _PyDictView */
Expand Down

0 comments on commit 9c2a52e

Please sign in to comment.