Skip to content

Commit 684b953

Browse files
committed
fix broken fix of Setup.stdlib.in
1 parent a813353 commit 684b953

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Include/internal/pycore_pymem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ extern wchar_t *_PyMem_DefaultRawWcsdup(const wchar_t *str);
8888
extern int _PyMem_DebugEnabled(void);
8989

9090
// Enqueue a pointer to be freed possibly after some delay.
91-
extern void _PyMem_FreeDelayed(void *ptr, size_t size);
91+
PyAPI_FUNC(void) _PyMem_FreeDelayed(void *ptr, size_t size);
9292

9393
// Periodically process delayed free requests.
9494
extern void _PyMem_ProcessDelayed(PyThreadState *tstate);

Modules/Setup.stdlib.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
############################################################################
3333
# Modules that should always be present (POSIX and Windows):
34-
@MODULE__ASYNCIO_TRUE@_asyncio _asynciomodule.c
34+
@MODULE_ARRAY_TRUE@array arraymodule.c
3535
@MODULE__BISECT_TRUE@_bisect _bisectmodule.c
3636
@MODULE__CSV_TRUE@_csv _csv.c
3737
@MODULE__HEAPQ_TRUE@_heapq _heapqmodule.c

0 commit comments

Comments
 (0)