8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c86a112 commit f95cd19Copy full SHA for f95cd19
Include/cpython/object.h
@@ -190,7 +190,7 @@ typedef struct {
190
* backwards-compatibility */
191
typedef Py_ssize_t printfunc;
192
193
-typedef struct _typeobject {
+struct _typeobject {
194
PyObject_VAR_HEAD
195
const char *tp_name; /* For printing, in format "<module>.<name>" */
196
Py_ssize_t tp_basicsize, tp_itemsize; /* For allocation */
@@ -271,7 +271,7 @@ typedef struct _typeobject {
271
272
destructor tp_finalize;
273
vectorcallfunc tp_vectorcall;
274
-} PyTypeObject;
+};
275
276
/* The *real* layout of a type object when allocated on the heap */
277
typedef struct _heaptypeobject {
0 commit comments