File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,8 @@ static inline Py_ssize_t PyDict_GET_SIZE(PyObject *op) {
45
45
#define PyDict_GET_SIZE (op ) PyDict_GET_SIZE(_PyObject_CAST(op))
46
46
47
47
PyAPI_FUNC (int ) PyDict_ContainsString (PyObject * mp , const char * key );
48
-
48
+ PyAPI_FUNC (PyObject * ) PyDict_NewPresized (Py_ssize_t minused );
49
+ PyAPI_FUNC (PyObject * ) PyDict_Pop (PyObject * dict , PyObject * key , PyObject * default_value );
49
50
50
51
/* Dictionary watchers */
51
52
Original file line number Diff line number Diff line change @@ -44,8 +44,6 @@ extern int _PyDict_HasOnlyStringKeys(PyObject *mp);
44
44
45
45
extern void _PyDict_MaybeUntrack (PyObject * mp );
46
46
47
- extern PyObject * _PyDict_NewPresized (Py_ssize_t minused );
48
-
49
47
// Export for '_ctypes' shared extension
50
48
PyAPI_FUNC (Py_ssize_t ) _PyDict_SizeOf (PyDictObject * );
51
49
You can’t perform that action at this time.
0 commit comments