bpo-45723: Prepare support for autoconf 2.71 (GH-29441)

This commit is contained in:
Christian Heimes 2021-11-08 20:31:14 +02:00 committed by GitHub
parent 9bd0cf5970
commit cbab997efb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 397 additions and 568 deletions

View file

@ -5,12 +5,7 @@
#include "pycore_interp.h" // PyInterpreterState.list
#include "pycore_object.h" // _PyObject_GC_TRACK()
#include "pycore_tuple.h" // _PyTuple_FromArray()
#ifdef STDC_HEADERS
#include <stddef.h>
#else
#include <sys/types.h> /* For size_t */
#endif
/*[clinic input]
class list "PyListObject *" "&PyList_Type"