bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271)

The accu.h header is no longer part of the Python C API: it has been
moved to the "internal" headers which are restricted to Python
itself.

Replace #include "accu.h" with #include "pycore_accu.h".
This commit is contained in:
Victor Stinner 2018-11-01 02:30:36 +01:00 committed by GitHub
parent 50b48572d9
commit e281f7d80c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 17 additions and 20 deletions

View file

@ -1,7 +1,7 @@
/* Accumulator struct implementation */
#include "Python.h"
#include "accu.h"
#include "pycore_accu.h"
static PyObject *
join_list_unicode(PyObject *lst)