mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-22 21:32:31 +00:00
Remove plenty of makefile misconfigurations
This commit is contained in:
parent
9172fd42a0
commit
8b469389f6
186 changed files with 1408 additions and 901 deletions
10
third_party/python/Objects/typeobject.c
vendored
10
third_party/python/Objects/typeobject.c
vendored
|
@ -33,6 +33,11 @@
|
|||
#include "third_party/python/Include/weakrefobject.h"
|
||||
/* clang-format off */
|
||||
|
||||
static const short slotoffsets[] = {
|
||||
-1, /* invalid slot */
|
||||
#include "third_party/python/Objects/typeslots.inc"
|
||||
};
|
||||
|
||||
/* Type object implementation */
|
||||
|
||||
/* Support type attribute cache */
|
||||
|
@ -2791,11 +2796,6 @@ error:
|
|||
return NULL;
|
||||
}
|
||||
|
||||
static const short slotoffsets[] = {
|
||||
-1, /* invalid slot */
|
||||
#include "typeslots.inc"
|
||||
};
|
||||
|
||||
PyObject *
|
||||
PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue