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

@ -2,12 +2,7 @@
#include "pycore_call.h" // _PyObject_CallNoArgs()
#include "pycore_long.h" // _PyLong_GetZero()
#include "structmember.h" // PyMemberDef
#ifdef STDC_HEADERS
#include <stddef.h>
#else
#include <sys/types.h> // size_t
#endif
/*[clinic input]
module _collections