PEP 384: Update PyType_Spec struct per bpo-15140 (#1354)

This commit is contained in:
Furkan Önder 2020-04-01 23:35:58 +03:00 committed by GitHub
parent 7eaf5f6303
commit 41657e2b48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -142,10 +142,9 @@ are available::
typedef struct{
const char* name;
const char* doc;
int basicsize;
int itemsize;
int flags;
unsigned int flags;
PyType_Slot *slots; /* terminated by slot==0. */
} PyType_Spec;