File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 100100#include "warnings.h"
101101#include "weakrefobject.h"
102102#include "structseq.h"
103- #include "accu.h"
104103
105104#include "codecs.h"
106105#include "pyerrors.h"
Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ Extension Modules
9393Build
9494-----
9595
96+ - Issue #14387: Do not include accu.h from Python.h.
97+
9698- Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined.
9799 Based on patch from Hervé Coatanhay.
98100
Original file line number Diff line number Diff line change 11/* Accumulator struct implementation */
22
33#include "Python.h"
4+ #include "accu.h"
45
56static PyObject *
67join_list_unicode (PyObject * lst )
Original file line number Diff line number Diff line change 11/* List object implementation */
22
33#include "Python.h"
4+ #include "accu.h"
45
56#ifdef STDC_HEADERS
67#include <stddef.h>
Original file line number Diff line number Diff line change 22/* Tuple object implementation */
33
44#include "Python.h"
5+ #include "accu.h"
56
67/* Speed optimization to avoid frequent malloc/free of small tuples */
78#ifndef PyTuple_MAXSAVESIZE
You can’t perform that action at this time.
0 commit comments