Skip to content

Commit d7248cd

Browse files
authored
gh-124153: Remove _PyType_GetModuleByDef2 private function (GH-124261)
Thank you!
1 parent 2c472d3 commit d7248cd

File tree

4 files changed

+26
-46
lines changed

4 files changed

+26
-46
lines changed

Include/internal/pycore_typeobject.h

-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@ extern PyObject * _PyType_GetBases(PyTypeObject *type);
209209
extern PyObject * _PyType_GetMRO(PyTypeObject *type);
210210
extern PyObject* _PyType_GetSubclasses(PyTypeObject *);
211211
extern int _PyType_HasSubclasses(PyTypeObject *);
212-
PyAPI_FUNC(PyObject *) _PyType_GetModuleByDef2(PyTypeObject *, PyTypeObject *, PyModuleDef *);
213212

214213
// Export for _testinternalcapi extension.
215214
PyAPI_FUNC(PyObject *) _PyType_GetSlotWrapperNames(void);

Modules/_collectionsmodule.c

+8-12
Original file line numberDiff line numberDiff line change
@@ -2179,6 +2179,8 @@ typedef struct {
21792179
PyObject *default_factory;
21802180
} defdictobject;
21812181

2182+
static PyType_Spec defdict_spec;
2183+
21822184
PyDoc_STRVAR(defdict_missing_doc,
21832185
"__missing__(key) # Called by __getitem__ for missing key; pseudo-code:\n\
21842186
if self.default_factory is None: raise KeyError((key,))\n\
@@ -2358,23 +2360,16 @@ defdict_or(PyObject* left, PyObject* right)
23582360
{
23592361
PyObject *self, *other;
23602362

2361-
// Find module state
2362-
PyTypeObject *tp = Py_TYPE(left);
2363-
PyObject *mod = PyType_GetModuleByDef(tp, &_collectionsmodule);
2364-
if (mod == NULL) {
2365-
PyErr_Clear();
2366-
tp = Py_TYPE(right);
2367-
mod = PyType_GetModuleByDef(tp, &_collectionsmodule);
2363+
int ret = PyType_GetBaseByToken(Py_TYPE(left), &defdict_spec, NULL);
2364+
if (ret < 0) {
2365+
return NULL;
23682366
}
2369-
assert(mod != NULL);
2370-
collections_state *state = get_module_state(mod);
2371-
2372-
if (PyObject_TypeCheck(left, state->defdict_type)) {
2367+
if (ret) {
23732368
self = left;
23742369
other = right;
23752370
}
23762371
else {
2377-
assert(PyObject_TypeCheck(right, state->defdict_type));
2372+
assert(PyType_GetBaseByToken(Py_TYPE(right), &defdict_spec, NULL) == 1);
23782373
self = right;
23792374
other = left;
23802375
}
@@ -2454,6 +2449,7 @@ passed to the dict constructor, including keyword arguments.\n\
24542449
#define DEFERRED_ADDRESS(ADDR) 0
24552450

24562451
static PyType_Slot defdict_slots[] = {
2452+
{Py_tp_token, Py_TP_USE_SPEC},
24572453
{Py_tp_dealloc, defdict_dealloc},
24582454
{Py_tp_repr, defdict_repr},
24592455
{Py_nb_or, defdict_or},

Modules/_decimal/_decimal.c

+13-5
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ get_module_state(PyObject *mod)
122122
}
123123

124124
static struct PyModuleDef _decimal_module;
125+
static PyType_Spec dec_spec;
125126

126127
static inline decimal_state *
127128
get_module_state_by_def(PyTypeObject *tp)
@@ -134,10 +135,16 @@ get_module_state_by_def(PyTypeObject *tp)
134135
static inline decimal_state *
135136
find_state_left_or_right(PyObject *left, PyObject *right)
136137
{
137-
PyObject *mod = _PyType_GetModuleByDef2(Py_TYPE(left), Py_TYPE(right),
138-
&_decimal_module);
139-
assert(mod != NULL);
140-
return get_module_state(mod);
138+
PyTypeObject *base;
139+
if (PyType_GetBaseByToken(Py_TYPE(left), &dec_spec, &base) != 1) {
140+
assert(!PyErr_Occurred());
141+
PyType_GetBaseByToken(Py_TYPE(right), &dec_spec, &base);
142+
}
143+
assert(base != NULL);
144+
void *state = _PyType_GetModuleState(base);
145+
assert(state != NULL);
146+
Py_DECREF(base);
147+
return (decimal_state *)state;
141148
}
142149

143150

@@ -745,7 +752,7 @@ signaldict_richcompare(PyObject *v, PyObject *w, int op)
745752
{
746753
PyObject *res = Py_NotImplemented;
747754

748-
decimal_state *state = find_state_left_or_right(v, w);
755+
decimal_state *state = get_module_state_by_def(Py_TYPE(v));
749756
assert(PyDecSignalDict_Check(state, v));
750757

751758
if ((SdFlagAddr(v) == NULL) || (SdFlagAddr(w) == NULL)) {
@@ -5041,6 +5048,7 @@ static PyMethodDef dec_methods [] =
50415048
};
50425049

50435050
static PyType_Slot dec_slots[] = {
5051+
{Py_tp_token, Py_TP_USE_SPEC},
50445052
{Py_tp_dealloc, dec_dealloc},
50455053
{Py_tp_getattro, PyObject_GenericGetAttr},
50465054
{Py_tp_traverse, dec_traverse},

Objects/typeobject.c

+5-28
Original file line numberDiff line numberDiff line change
@@ -5207,8 +5207,8 @@ PyType_GetModuleState(PyTypeObject *type)
52075207
/* Get the module of the first superclass where the module has the
52085208
* given PyModuleDef.
52095209
*/
5210-
static inline PyObject *
5211-
get_module_by_def(PyTypeObject *type, PyModuleDef *def)
5210+
PyObject *
5211+
PyType_GetModuleByDef(PyTypeObject *type, PyModuleDef *def)
52125212
{
52135213
assert(PyType_Check(type));
52145214

@@ -5241,7 +5241,7 @@ get_module_by_def(PyTypeObject *type, PyModuleDef *def)
52415241
Py_ssize_t n = PyTuple_GET_SIZE(mro);
52425242
for (Py_ssize_t i = 1; i < n; i++) {
52435243
PyObject *super = PyTuple_GET_ITEM(mro, i);
5244-
if(!_PyType_HasFeature((PyTypeObject *)super, Py_TPFLAGS_HEAPTYPE)) {
5244+
if (!_PyType_HasFeature((PyTypeObject *)super, Py_TPFLAGS_HEAPTYPE)) {
52455245
// Static types in the MRO need to be skipped
52465246
continue;
52475247
}
@@ -5254,37 +5254,14 @@ get_module_by_def(PyTypeObject *type, PyModuleDef *def)
52545254
}
52555255
}
52565256
END_TYPE_LOCK();
5257-
return res;
5258-
}
52595257

5260-
PyObject *
5261-
PyType_GetModuleByDef(PyTypeObject *type, PyModuleDef *def)
5262-
{
5263-
PyObject *module = get_module_by_def(type, def);
5264-
if (module == NULL) {
5258+
if (res == NULL) {
52655259
PyErr_Format(
52665260
PyExc_TypeError,
52675261
"PyType_GetModuleByDef: No superclass of '%s' has the given module",
52685262
type->tp_name);
52695263
}
5270-
return module;
5271-
}
5272-
5273-
PyObject *
5274-
_PyType_GetModuleByDef2(PyTypeObject *left, PyTypeObject *right,
5275-
PyModuleDef *def)
5276-
{
5277-
PyObject *module = get_module_by_def(left, def);
5278-
if (module == NULL) {
5279-
module = get_module_by_def(right, def);
5280-
if (module == NULL) {
5281-
PyErr_Format(
5282-
PyExc_TypeError,
5283-
"PyType_GetModuleByDef: No superclass of '%s' nor '%s' has "
5284-
"the given module", left->tp_name, right->tp_name);
5285-
}
5286-
}
5287-
return module;
5264+
return res;
52885265
}
52895266

52905267

0 commit comments

Comments
 (0)