summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/complexobject.c2
-rw-r--r--Objects/dictobject.c3
-rw-r--r--Objects/enumobject.c7
-rw-r--r--Objects/exceptions.c3
-rw-r--r--Objects/floatobject.c2
-rw-r--r--Objects/listobject.c3
-rw-r--r--Objects/setobject.c8
-rw-r--r--Objects/structseq.c3
-rw-r--r--Objects/tupleobject.c2
9 files changed, 13 insertions, 20 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c
index f658dbf..e0766de 100644
--- a/Objects/complexobject.c
+++ b/Objects/complexobject.c
@@ -846,7 +846,7 @@ complex_from_string_inner(const char *s, Py_ssize_t len, void *type)
if (s-start != len)
goto parse_error;
- return complex_subtype_from_doubles((PyTypeObject *)type, x, y);
+ return complex_subtype_from_doubles(_PyType_CAST(type), x, y);
parse_error:
PyErr_SetString(PyExc_ValueError,
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 7ce4b90..39be189 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -3450,13 +3450,12 @@ static PyObject *
dict_vectorcall(PyObject *type, PyObject * const*args,
size_t nargsf, PyObject *kwnames)
{
- assert(PyType_Check(type));
Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
if (!_PyArg_CheckPositional("dict", nargs, 0, 1)) {
return NULL;
}
- PyObject *self = dict_new((PyTypeObject *)type, NULL, NULL);
+ PyObject *self = dict_new(_PyType_CAST(type), NULL, NULL);
if (self == NULL) {
return NULL;
}
diff --git a/Objects/enumobject.c b/Objects/enumobject.c
index 8fbf4fd..36f592d 100644
--- a/Objects/enumobject.c
+++ b/Objects/enumobject.c
@@ -88,8 +88,7 @@ static PyObject *
enumerate_vectorcall(PyObject *type, PyObject *const *args,
size_t nargsf, PyObject *kwnames)
{
- assert(PyType_Check(type));
- PyTypeObject *tp = (PyTypeObject *)type;
+ PyTypeObject *tp = _PyType_CAST(type);
Py_ssize_t nargs = PyVectorcall_NARGS(nargsf);
Py_ssize_t nkwargs = 0;
if (nargs == 0) {
@@ -373,8 +372,6 @@ static PyObject *
reversed_vectorcall(PyObject *type, PyObject * const*args,
size_t nargsf, PyObject *kwnames)
{
- assert(PyType_Check(type));
-
if (!_PyArg_NoKwnames("reversed", kwnames)) {
return NULL;
}
@@ -384,7 +381,7 @@ reversed_vectorcall(PyObject *type, PyObject * const*args,
return NULL;
}
- return reversed_new_impl((PyTypeObject *)type, args[0]);
+ return reversed_new_impl(_PyType_CAST(type), args[0]);
}
static void
diff --git a/Objects/exceptions.c b/Objects/exceptions.c
index 403d2d4..22a4713 100644
--- a/Objects/exceptions.c
+++ b/Objects/exceptions.c
@@ -1775,8 +1775,7 @@ OSError_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
PyObject *newtype;
newtype = PyDict_GetItemWithError(state->errnomap, myerrno);
if (newtype) {
- assert(PyType_Check(newtype));
- type = (PyTypeObject *) newtype;
+ type = _PyType_CAST(newtype);
}
else if (PyErr_Occurred())
goto error;
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 68be7ac..79fbdab 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -1686,7 +1686,7 @@ float_vectorcall(PyObject *type, PyObject * const*args,
}
PyObject *x = nargs >= 1 ? args[0] : NULL;
- return float_new_impl((PyTypeObject *)type, x);
+ return float_new_impl(_PyType_CAST(type), x);
}
diff --git a/Objects/listobject.c b/Objects/listobject.c
index 29f5d70..0ce58b2 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -2858,8 +2858,7 @@ list_vectorcall(PyObject *type, PyObject * const*args,
return NULL;
}
- assert(PyType_Check(type));
- PyObject *list = PyType_GenericAlloc((PyTypeObject *)type, 0);
+ PyObject *list = PyType_GenericAlloc(_PyType_CAST(type), 0);
if (list == NULL) {
return NULL;
}
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 6e110ef..ca3cfe8 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -1001,7 +1001,7 @@ make_new_frozenset(PyTypeObject *type, PyObject *iterable)
Py_INCREF(iterable);
return iterable;
}
- return make_new_set((PyTypeObject *)type, iterable);
+ return make_new_set(type, iterable);
}
static PyObject *
@@ -1036,7 +1036,7 @@ frozenset_vectorcall(PyObject *type, PyObject * const*args,
}
PyObject *iterable = (nargs ? args[0] : NULL);
- return make_new_frozenset((PyTypeObject *)type, iterable);
+ return make_new_frozenset(_PyType_CAST(type), iterable);
}
static PyObject *
@@ -1974,10 +1974,10 @@ set_vectorcall(PyObject *type, PyObject * const*args,
}
if (nargs) {
- return make_new_set((PyTypeObject *)type, args[0]);
+ return make_new_set(_PyType_CAST(type), args[0]);
}
- return make_new_set((PyTypeObject *)type, NULL);
+ return make_new_set(_PyType_CAST(type), NULL);
}
static PySequenceMethods set_as_sequence = {
diff --git a/Objects/structseq.c b/Objects/structseq.c
index dfefae8..cded877 100644
--- a/Objects/structseq.c
+++ b/Objects/structseq.c
@@ -108,10 +108,9 @@ static void
structseq_dealloc(PyStructSequence *obj)
{
Py_ssize_t i, size;
- PyTypeObject *tp;
PyObject_GC_UnTrack(obj);
- tp = (PyTypeObject *) Py_TYPE(obj);
+ PyTypeObject *tp = Py_TYPE(obj);
size = REAL_SIZE(obj);
for (i = 0; i < size; ++i) {
Py_XDECREF(obj->ob_item[i]);
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index 2051c18..86f541a 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -817,7 +817,7 @@ tuple_vectorcall(PyObject *type, PyObject * const*args,
}
if (nargs) {
- return tuple_new_impl((PyTypeObject *)type, args[0]);
+ return tuple_new_impl(_PyType_CAST(type), args[0]);
}
else {
return tuple_get_empty();